我使用以下代码在JPEG图像上附加文字...
imagettftext( $png, $size, 0,$textx+2, $texty+2, $shadow_color, $fontfile, $textval );
imagettftext( $png, $size, 0,$textx, $texty, $tx, $fontfile, $textval );
imagejpeg($png, $medium_card_file_path);
imagedestroy($png);
但是在尝试使用gif图像做同样的事情时,动画的质量会受到影响。
提前感谢您的帮助。