问答详情
源自:2-5 验证码函数的封装及测试

为什么检测验证码时,浏览器只显示白色正方形边框

$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);

https://img.mukewang.com/5b8f4b9800015e2e18221080.jpg

提问者:白菜小生 2018-09-05 11:21

个回答

  • IT沧海一粟
    2018-09-05 23:45:09
    已采纳

    童鞋,你这代码没啥问题,应该是 

    $fontFile='fonts/STSONG.TTF';

    这个字体原因,找不到或者路径不对,导致的。