今天在编译安装php7后,验证码图片无法显示,报错Call to undefined function imagettfbbox(),
从网上看了其他人的解决办法都说是编译时没有加上:
“--with-freetype-dir=/usr”
于是添加GD库相关的设置
--with-gd \
--with-jpeg-dir=/usr \
--with-png-dir=/usr \
--with-xpm-dir=/usr \
--enable-gd-jis-conv \
--with-freetype-dir=/usr \
重新编译后,还是报错,后来又添加了一项
--enable-gd-native-ttf \
问题解决了!!
记录一下备忘