与imagettftext()兼容的Unicode

时间:2012-05-03 02:07:53

标签: php unicode imagettftext

还有哪些其他服务器端工具可用于从TTF / OTF字体文件创建文本图像?我无法使用imagettftext()来渲染中文/日文字形(即使使用HTML实体定义输入字符串,例如$#44032;,如下所示:PHP function imagettftext() and unicode)。

1 个答案:

答案 0 :(得分:0)

我最终从PHP中调用了ImageMagick:

$command = 'printf "'.$text.'" | convert -size x'.(5*$size).' -gravity center -background "#00000000" -fill "#000000FF" -font '.$fontpath.' -pointsize '.$size.' label:@- -trim '.$imagepath;
exec($command);