今天升级下php版本,升级到php7.2.7,由于好久没升级,导致以前用phpbrew
安装的 GD
扩展的命令记不住了。
因为涉及到jpeg
, freetype
, png
等运行库的指定。
查看相关文档终于找到解决办法,现在记录下
phpbrew cookbook
1 2 3 4 5 6
| phpbrew ext install gd -- --with-gd=shared \ --with-png-dir=/usr/local/opt/lib \ --with-jpeg-dir=/usr/local/opt/jpeg \ --with-freetype-dir=/usr/local/opt/freetype \ --enable-gd-native-ttf
|