到处都在谈论在透明图像上添加文本。我已经成功添加了像水印这样的文本(也就是说透明文本)。你能建议我如何给不透明度 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);