php在linux下call to undefined function imagettftext()

在线上环境测试图片生成的时候报错:call to undefined function imagettftext()

➡️解决方案

下载安装freetype

1
2
3
./configure --prefix=/usr/local/freetype/2.7.1 --without-harfbuzz //编译
make
make install

再重新编译安装gd

1
2
3
4
5
phpize
make clean
./configure --with-php-config=/usr/local/php/php72/bin/php-config--with-freetype-dir=/usr/local/freetype/2.7.1/ --enable-gd-native-ttf
make
make install