error: Call to undefined function imagettftext()

PHP GD 图库报错:error: Call to undefined function imagettftext()php

缘由是确少 freetypehtml

1.安装freetypeshell

下载最新版的 [freetype](https://www.freetype.org/download.html "freetype") 解压 编译 安装:code

tar -zxvf freetype-2.9.1.tar.gz
cd reetype-2.9.1
# 安装到/usr/local/freetype
./configure --prefix=/usr/local/freetype
make && make install

2.从新编译安装 gdhtm

首先要 make clean;这个很重要get

#先进入 PHP 源码包中的 ext/gd/ 下
make clean
phpize
./configure --with-freetype-dir=/usr/local/freetype
make && make install

若是是首次安装 gd 须要在 php.ini 中开启 gd.so源码

相关文章
相关标签/搜索