Código PHP:
$ancho = 150;
$alto = 150;
$rut = $row['ruta'];
$fuente = @imagecreatefromjpg($rut);
$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/jpg");
imageJpg($imagen);
Y para mostrar la supuesta imagen que se crea pongo: print "<td width=100% height=12 align=center><img src=".$imagen."></td>";
Creo que puede estar aquí el problema..
![Pensando](http://static.forosdelweb.com/fdwtheme/images/smilies/scratchchin.gif)
Ejecuto el código y no lanza ningún error... se queda la página a mitar cargar...