Código PHP:
<?
$fuente = @imagecreatefromjpeg($ruta);
$imgAncho = imagesx($fuente);
$imgAlto = imagesy($fuente);
$imagen = imagecreatetruecolor($ancho,$alto);
imagecopyresampled($imagen,$fuente,0,0,0,0,$ancho,$alto,$imgAncho,$imgAlto);
Header("Content-type: image/jpeg");
imagejpeg($imagen);
imagedestroy($imagen);
?>