Tengo un problema, quiero recortar una imagen en PHP, pero no lo consigo, me sale todo negro.
La funcion que utilizo es:
Código PHP:
$targ_w = 400;
$targ_h = 150;
$jpeg_quality = 90;
$src = '../img/12:20:289-2-2009.jpg';
$img_r = imagecreatefromjpeg($src);
$dst_r = imagecreatetruecolor($targ_w, $targ_h );
imagecopyresampled($dst_r, $img_r, 0, 0, 1024, 768, $targ_w, $targ_h, 1024, 768);
header('Content-type: image/jpeg');
imagejpeg($dst_r,NULL,$jpeg_quality);
Gracias y un saludo,