web-dev-qa-db-fra.com

Installer la bibliothèque Gd et Freetype sur Linux

J'essaie d'utiliser imagefttext. Et je dois installer la bibliothèque Gd et/ou freetype . Je suis nouveau à ce genre de choses, Comment installer Gd library et freetype sous Linux?

32
C A Mc

Installer Gd:

Pour CentOS/RedHat/Fedora :

Sudo yum install php-Gd

Pour Debian/ubuntu :

Sudo apt-get install php5-Gd

Installation de freetype:

Pour CentOS/RedHat/Fedora :

Sudo yum install freetype*

Pour Debian/ubuntu :

Sudo apt-get install freetype*

N'oubliez pas de redémarrer Apache après cela (si vous utilisez Apache):

CentOS/RedHat/Fedora

Sudo /etc/init.d/httpd restart

Ou

Sudo service httpd restart

Debian/ubuntu :

Sudo /etc/init.d/Apache2 restart

Ou

Sudo service Apache2 restart
66
Alireza Fallah

Les choses sont beaucoup plus simples, sauf si elles sont source de confusion.

Pour installer la bibliothèque Gd sous Ubuntu

Sudo apt-get install php5-Gd

Pour installer Freetype dans Ubuntu

Sudo apt-get install libfreetype6-dev:i386
12
XIMRX

Pour CentOS: Lors de l'installation de php-Gd, vous devez spécifier la version. Je l'ai corrigé en lançant: Sudo yum install php55-Gd

1
Mithun Billara

Installation de freetype:

Sudo apt update && Sudo apt install freetype2-demos

1
IMAN4K