hola
he leido el script que esta en esta pagina
http://www.maestrosdelweb.com/editorial/thumbphp/y lo he modificado asi
CODE
$ancho = 160;
$alto = 120;
$fuente = @imagecreatefromjpeg('fotos/21-07-06_1448.jpg');
$imgAncho = imagesx($fuente);
$imgAlto =imagesy($fuente);
$imagen = ImageCreate($ancho,$alto);
ImageCopyResized($imagen,$fuente,0,0,0,0,$ancho,$alto,$imgAncho,$imgAlto);
Header("Content-type: image/jpeg");
imageJpeg($imagen);
y me arroja este error
que será??