我正在使用 PHP 函数 imagettftext() 将文本转换为 GIF 图像。我正在转换的文本包含 Unicode 字符,包括日语。在我的本地机器(Ubuntu 7.10)上一切正常,但在我的虚拟主机服务器上,日语字符被破坏了。什么可能导致差异?一切都应该编码为 UTF-8。
虚拟主机服务器上的损坏图像:http: //www.ibeni.net/flashcards/imagetest.php
从我的本地机器复制正确的图像:http: //www.ibeni.net/flashcards/imagetest.php.gif
从我的本地机器复制 phpinfo():http: //www.ibeni.net/flashcards/phpinfo.php.html
从我的虚拟主机服务器复制 phpinfo(): http ://example5.nfshost.com/phpinfo
代码:
mb_language('uni');
mb_internal_encoding('UTF-8');
header('Content-type: image/gif');
$text = '日本語';
$font = './Cyberbit.ttf';
// Create the image
$im = imagecreatetruecolor(160, 160);
$white = imagecolorallocate($im, 255, 255, 255);
$black = imagecolorallocate($im, 0, 0, 0);
// Create some colors
imagefilledrectangle($im, 0, 0, 159, 159, $white);
// Add the text
imagettftext($im, 12, 0, 20, 20, $black, $font, $text);
imagegif($im);
imagedestroy($im);