白菜小生
2018-09-05 11:21
$width=200; $height=50; $image=imagecreatetruecolor($width,$height); $white=imagecolorallocate($image,255,255,255); imagefilledrectangle($image,0,0,$width,$height,$white); $randColor=imagecolorallocate($image,mt_rand(0,255),mt_rand(0,255),mt_rand(0,255));
$size=mt_rand(20,28); $angle=mt_rand(-15,15); $x=50; $y=30; $fontFile='fonts/STSONG.TTF'; $text=mt_rand(1000,9999); imagettftext($image,$size,$angle,$x,$y,$randColor,$fontFile,$text);
header('content-type:image/png'); imagepng($image); imagedestroy($image);
童鞋,你这代码没啥问题,应该是
$fontFile='fonts/STSONG.TTF';
这个字体原因,找不到或者路径不对,导致的。
PHP进阶篇-GD库图像处理
10431 学习 · 69 问题
相似问题