Ver Mensaje Individual
  #7 (permalink)  
Antiguo 08/04/2011, 10:53
Avatar de Garot
Garot
 
Fecha de Ingreso: marzo-2010
Ubicación: Mar de Dirac
Mensajes: 121
Antigüedad: 14 años, 10 meses
Puntos: 7
Respuesta: Calidad de Imagen PHP

Lo hice funcionar!!!

Tuve que agregarle esta linea:

header("Content-type: image/jpeg");

quedo asi
Código PHP:
<?php 
header
("Content-type: image/jpeg");

include(
"resize.php");
$thumb=new thumbnail("marado.jpg");
$thumb->size_width(200);
$thumb->show();

?>
Lo pongo acá por si a alguien le ayuda

Saludos!