报错的原因是php中gd库的相关图片能力没有正确开启和引用
通过phpInfo()查看 gd库已经开启,但是里边没有freeType 和jpeg的支持 但有png的支持
1、如果是 freetype 跟 jpeg没有安装
则安装这两软件
yum install freetype*
yum install libjpeg*
2、进入php源代码的 php源代码(下载的代码)/ext/gd文件夹中 利用phpize进行拓展安装
初始化php组件安装环境:
/usr/local/php/bin/phpize
配置gd编译环境:
./configure --with-freetype=/usr/include/freetype2 --with-jpeg=/usr/include --with-php-config=/usr/local/php/bin/php-config
注意加粗部分,不加这个还是没有开启freetype能力,仍然会报imagettftext函数不存在的错误(第一次没有加这个配置,编译安装gd后还是报错)
编译:make
安装:make install