在 Linux 上安装 GD 库和 freetype
我正在尝试使用 imagefttext。我需要安装GD库和/或freetype。我是这种东西的新手,如何在Linux中安装GD库和freetype?
我正在尝试使用 imagefttext。我需要安装GD库和/或freetype。我是这种东西的新手,如何在Linux中安装GD库和freetype?
对于 CentOS / RedHat / Fedora :
sudo yum install php-gd
对于 Debian/ubuntu :
sudo apt-get install php5-gd
对于 CentOS / RedHat / Fedora :
sudo yum install freetype*
对于 Debian/ubuntu :
sudo apt-get install freetype*
之后不要忘记重新启动apache(如果您使用的是apache):
CentOS / RedHat / Fedora :
sudo /etc/init.d/httpd restart
或
sudo service httpd restart
Debian/ubuntu :
sudo /etc/init.d/apache2 restart
或
sudo service apache2 restart
除非它们令人困惑,否则事情要简单得多。
在 Ubuntu 中安装 GD 库
sudo apt-get install php5-gd
在 Ubuntu 中安装 Freetype
sudo apt-get install libfreetype6-dev:i386