透明な画像にテキストを追加することについてはどこでも話しています。透かしのようなテキストを正常に追加しました(つまり、透明なテキストを意味します)。不透明度を 50% にする方法を教えてください。
ここにコードがあります -
$text = "GIF-KING";
$font = "arial.ttf";
$image = imagecreatefromgif('tmpimg/myimage.gif');
$text_color = imagecolorallocate($image, 198, 60, 147);
//imagestring($image,36, 10, 20, $text, $text_color);
imagettftext($image, 30, 0,10, 290, $text_color, $font, $text);