downloads | documentation | faq | getting help | mailing lists | licenses | wiki | reporting bugs | php.net sites | links | conferences | my php.net

search for in the

Configuración en tiempo de ejecución> <Requerimientos
Last updated: Fri, 20 May 2011

view this page in

Instalación

Para habilitar el soporte para GD configure PHP con --with-gd[=DIR] , donde DIR es el directorio de intalacion base de GD. Para usar la versión de la biblioteca GD incluida recomendada (la cual fue primero incluida en PHP 4.3.0), use la opción de configuración --with-gd . La biblioteca GD requiere libpng y libjpeg para compilarse.

En Windows, incluirá la DLL GD2 php_gd2.dll como una extensión en php.ini. La DLL GD1 php_gd.dll fue eliminada en PHP 4.3.2. Observe también que las funciones preferentes de imágenes de color verdadero, tales como imagecreatetruecolor(), requieren GD2.

Mejore las capacidades de GD para manejar más formatos de imagen especificando la opción de configuración --with-XXXX en la línea de configuración de PHP.

Formatos de imagen soportados
Formato de Imagen Opción de Configuración
jpeg Para habilitar el suporte para jpeg añadir --with-jpeg-dir=DIR . Jpeg 6b, 7 o 8 están soportados.
png Para habilitar el soporte para png añada --with-png-dir=DIR . Nota, libpng requiere la biblioteca zlib, por lo tanto añada --with-zlib-dir[=DIR] a la línea de configuración.
xpm Para habilitar el soporte para xpm añada --with-xpm-dir=DIR . Si la configuración no es capaz de encontrar las bibliotecas requeridas, se puede añadir la ruta a las bibliotecas X11.

Note: Cuando se compila PHP con libpng, se debe usar la misma versión que fue enlazada con la biblioteca GD.

Mejore las capacidades de GD para tratar con difenrentes fuentes especificando la opción de configuración --with-XXXX en la línea de configuración de PHP.

Bibliotecas de fuentes soportadas
Biblioteca de Fuentes Opción de Configuración
FreeType 1.x Para habilitar el soporte para FreeType 1.x añada --with-ttf[=DIR] .
FreeType 2 Para habilitar el soporte para FreeType 2 añada --with-freetype-dir=DIR .
T1lib Para habilitar el soporte para T1lib (fuentes Postscript Type 1) añada --with-t1lib[=DIR] .
Función de cadena TrueType nativa Para habilitar el soporte para la función de cadena TrueType nativa añada --enable-gd-native-ttf .



Configuración en tiempo de ejecución> <Requerimientos
Last updated: Fri, 20 May 2011
 
add a note add a note User Contributed Notes Instalación
octopus at logicaloctopus dot com 17-Apr-2011 07:07
I was running PHP on a SUSE box on amazon EC2.
to get gd to work all I had to do was to run:
> yast -i php5_gd

and when that completed I just restarted apache. voila!
boly38 at gmail dot com 17-Mar-2011 01:25
To get GD bundled under Ubuntu, the way to recompile php5 with gd is described here (french) http://doc.ubuntu-fr.org/modules_php#php5-gd
lucaferr 21-Dec-2010 01:30
In Slackware 64bit (I tested 13.1) you need to make symlinks to libpng and libjpeg if you want to compile php with GD, even if you've already installed them, otherwise configure will give you a "libpng not found" error, even if you set --with-libdir=/usr/lib64 (it seems to have no effects at all). So, run these before configuring:
ln -s /usr/lib64/libjpeg.so /usr/lib/libjpeg.so
ln -s /usr/lib64/libpng.so /usr/lib/libpngp.so
elassoto at hotmail dot com 10-Sep-2010 08:54
If you have already compiled PHP and want to recompile '--with-gd', don't forget to run 'make clean' first!
Larry Kluger 13-Jan-2010 10:40
On 64bit centos, needed to create links from lib64 to lib. Php seems to insist on looking in lib, even with "with-jpeg-dir" config.

Eg

ln -s /usr/lib64/libjpeg.so.62.0.0  /usr/lib/libjpeg.so
ln -s /usr/lib64/libpng.so.3.10.0  /usr/lib/libpng.so

./configure  \
  --with-config-file-path=/etc \
  --prefix=/usr \
  --with-bz2 \
  --enable-zip \
  --enable-mbstring \
  --with-apxs2=/usr/sbin/apxs \
  --with-zlib-dir=/usr/include \
  --with-libxml-dir=/usr/lib64 \
  --with-mcrypt=/usr/lib64 \
  --with-mysql \
  --with-gd \
  --with-jpeg-dir=/usr \
  --with-png-dir=/usr \
  --enable-calendar
ben at bluehype dot com dot au 27-Jan-2009 12:07
If you have already compiled php without jpeg support and decide you want it , then before you compile again you might need to run "make clean" first.
Naveen Kumar 06-Jan-2009 07:08
For Redhat Linux 64 bit machine:
--with-libdir=lib64 --with-gd  --with-jpeg-dir --with-png-dir
msc at homofaber dot com 30-Oct-2008 03:45
It should be noted that it might be pretty easy to install gd without the need to recompile php, when using debian:

apt-get install php5-gd
gerard at charlesconsulting dot com 21-Aug-2008 04:36
On my system,I had to ensure I had not only libpng and libjpeg, but also the libpng-devel and libjpeg-devel packages installed.
kronn 17-Jul-2008 09:44
Everytime I try to install the gd-lib as a dynamic extension, I run into the same problem: It wont work.

I get the following error:

PHP Warning:  PHP Startup: Unable to load dynamic library '/usr/pkg/lib/php/20040412/gd.so' - dlopen(/usr/pkg/lib/php/20040412/gd.so, 9): Symbol not found: __cg_jpeg_resync_to_restart\n  Referenced from: /System/Library/Frameworks/ApplicationServices. framework/Versions/A/Frameworks/ImageIO.framework/Versions/A/ImageIO\n  Expected in: /usr/pkg/lib/libjpeg.62.dylib\n in Unknown on line 0

I use pkgsrc for software package managment on my mac, as may be apparent from the paths.

The solution is, to edit the file /usr/pkg/sbin/envvars and remove or comment the DYLD_LIBRARY_PATH because it is causing the error...
mike at clove dot com 18-Apr-2008 04:40
jpeg [jpg] file processing doesn't work unless you build php with '--with-jpeg-dir=<path to jpeg library>'.

It still doesn't work unless <path to jpeg library> points to the directory holding the directory holding the library unless libjpeg.<whatever> is in either /usr/lib or /usr/local/lib. For instance, on a mac with libjpeg.a installed via mac ports, you need '/opt/local' rather than '/opt/local/lib'

 
show source | credits | stats | sitemap | contact | advertising | mirror sites