php如何安装freetype
程序员文章站
2022-04-05 10:14:30
...
php安装freetype的方法:首先执行命令“make && make install”安装freeType;然后安装GD包括freetype;接着切换到PHP ext源码目录;最后重启php服务即可。
推荐:《PHP视频教程》
PHP Fatal error: Call to undefined function imagettftext()
错误提示是指GD库中缺少freetype库,你装了GD不一定就支持freetype,很多人理解错误,
freetype 不是一个独立的扩展,是附着在GD库上的。
freeType官方下载地址:https://www.freetype.org/download.html
第一步安装freeType
./configure --prefix=/usr/local/freetype make && make install
第二步安装GD包括freetype
切换到PHP ext源码目录
/opt/php5/bin/phpize ./configure --with-php-config=/opt/php5/bin/php-config --with-jpeg-dir=/usr/local/jpeg/lib --with-freetype-dir=/usr/local/freetype --enable-gd-native-ttf make && make install
如果需安装 gd支持jpeg请参见 https://blog.csdn.net/coolpan123/article/details/72916802
如果没有安装过gd 把gd.so 写入php.ini
如果以前装过gd 直接重启php服务即可
以上就是php如何安装freetype的详细内容,更多请关注其它相关文章!
上一篇: 如何解决easyui 乱码问题
推荐阅读
-
ApowerREC屏幕录像机如何安装?ApowerREC屏幕录像机安装破解教程
-
木疙瘩动画制作软件如何使用?木疙瘩动画制作软件安装使用教程
-
stream游戏平台如何下载安装?stream下载安装教程
-
php中文乱码怎么办如何让浏览器自动识别utf-8
-
linux下apache、mysql、php安装配置详细笔记
-
PHP 如何获取二维数组中某个key的集合
-
IIS6.0+PHP5.x+MySQL5.x+Zend3.0x+GD+phpMyAdmin2.8x通用安装实例(已经完成)
-
PHP 5.0 Pear安装方法
-
深入讲解PHP Session及如何保持其不过期的方法
-
php轻量级的性能分析工具xhprof的安装使用