php7 Warning: imagettftext(): Could not find/open font in

环境:wamp

1.配置文件环境变量正确;
2.php的freetype支持已经添加;
3.字体文件的位置也没有问题;

问题:使用GD库imagettftext()函数时,报“Warning: imagettftext(): Could not find/open font in ”警告 。

解决方案:找了很久,发现是GD库加载字体文件时,需求提供绝对路径,给font路径用realpath()将相对路径转成绝对路径即可。

imagettftext ( $this->img, $this->fontsize, mt_rand ( - 15, 15 ), $_x * $i + mt_rand ( 2, 3 ), $this->height / 1.2, $this->fontcolor, realpath($this->font), $string->mbSub($this->code, 1, $i));

 

你可能感兴趣的:(php,互联网)