Ver Mensaje Individual
  #1 (permalink)  
Antiguo 21/10/2006, 16:30
Avatar de omegafunky
omegafunky
 
Fecha de Ingreso: diciembre-2003
Ubicación: Tabasco, Mexico
Mensajes: 3.534
Antigüedad: 20 años, 4 meses
Puntos: 33
Como instalar la biblioteca GD

hola tengo el wamp5, ya la trae o c la tengo k instalar? es k ando probando un script para generrar una miniatura pero me marco
Fatal error: Call to undefined function imagecreatefromjpeg() in c:\wamp\www\convierte_foto.php on line 6

Código PHP:
<?php
// Simple Thumb Gen
// Por Alex para WebTaller.com
$original imagecreatefromjpeg("original.jpg"); //////////LINEA 6
$thumb imagecreatetruecolor(150,150); // Lo haremos de un tamaño 150x150
$ancho imagesx($original);
$alto imagesy($original);
imagecopyresampled($thumb,$original,0,0,0,0,150,150,$ancho,$alto); 
imagejpeg($thumb,'thumb.jpg',90); // 90 es la calidad de compresión
?>