imagettftext不显示数字只有字母

时间:2018-02-26 14:51:53

标签: php imagettftext

这是我的代码:

header('Content-Type: image/jpeg');  

$image_width = 400; 
$image_height = 30; 
$im = imagecreatetruecolor($image_width, $image_height);


$white = imagecolorallocate($im, 255, 255, 255); 
$black = imagecolorallocate($im, 0, 0, 0); 
imagefilledrectangle($im, 0, 0, 399, 29, $white);


$text = utf8_encode("test 123 abc");

$font = 'myfont.ttf';

imagettftext($im, 20, 0, 10, 20, $black, $font, $text);  
imagejpeg($im); 
imagedestroy($im);

任何人都可以帮我找到我错的地方。

0 个答案:

没有答案