PHP gd 库添加 freetype

gd 库未安装 freetype 可能导致验证码图片加载不出来等问题。

  1. 先到 PHP 的扩展目录里面找到 gd 扩展文件夹
  2. 最好先 make clean 清除之前编译的可执行文件及配置文件,运行/usr/local/php/bin/phpize。最后编译安装
 ./configure --with-php-config=/usr/local/php/bin/php-config --with-jpeg-dir --with-png-dir --with-freetype-dir --with-zlib-dir --with-gd
 make && make install
  1. 重启服务器
原文地址:https://www.cnblogs.com/Cecil_1995/p/10981976.html