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

来源:2-5 验证码函数的封装及测试

白菜小生

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

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

写回答 关注

1回答

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

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

    $fontFile='fonts/STSONG.TTF';

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

PHP进阶篇-GD库图像处理

想通过PHP中GD函数库灵活操作图像吗,点击学习本教程可以实现

10431 学习 · 69 问题

查看课程

相似问题