subir_thumbnails.php
Código PHP:
<?php
function resizeThumbnailImage($thumb_image_name, $image, $width, $height, $start_width, $start_height, $scale){
list($imagewidth, $imageheight, $imageType) = getimagesize($image);
$imageType = image_type_to_mime_type($imageType);
$newImageWidth = ceil($width * $scale);
$newImageHeight = ceil($height * $scale);
$newImage = imagecreatetruecolor($newImageWidth,$newImageHeight);
switch($imageType) {
case "image/gif":
$source=imagecreatefromgif($image);
break;
case "image/pjpeg":
case "image/jpeg":
case "image/jpg":
$source=imagecreatefromjpeg($image);
break;
case "image/png":
case "image/x-png":
$source=imagecreatefrompng($image);
break;
}
imagecopyresampled($newImage,$source,0,0,$start_width,$start_height,$newImageWidth,$newImageHeight,$width,$height);
switch($imageType) {
case "image/gif":
imagegif($newImage,$thumb_image_name);
break;
case "image/pjpeg":
case "image/jpeg":
case "image/jpg":
imagejpeg($newImage,$thumb_image_name,90);
break;
case "image/png":
case "image/x-png":
imagepng($newImage,$thumb_image_name);
break;
}
chmod($thumb_image_name, 0777);
return $thumb_image_name;
}
$thumb_width = "80";
$cantidad=$_POST['imagenes'];
for($i=1;$i<=$cantidad;$i++){
$x1[$i]=$_POST['x1_'.$i];
$y1[$i]=$_POST['y1_'.$i];
$x2[$i]=$_POST['x2_'.$i];
$y2[$i]=$_POST['y2_'.$i];
$w[$i]=$_POST['w_'.$i];
$h[$i]=$_POST['h_'.$i];
$scale[$i] = $thumb_width/$w[$i];
$thumb_image_location[$i]=$_POST['thumb_image_location'.$i];
$large_image_location[$i]=$_POST['large_image_location'.$i];
$cropped=resizeThumbnailImage($thumb_image_location[$i], $large_image_location[$i],$w[$i],$h[$i],$x1[$i],$y1[$i],$scale[$i]);
}
echo "Las imagenes y sus thumbnails han sido subido con exito."
?>
El codigo lo saque de esta pagina: [URL="http://www.webmotionuk.co.uk/php-jquery-image-upload-and-crop-v11/"]aqui[/URL].
El
jquery-1.4.3.min.js lo pueden descargar de ese mismo link, asi como el
jquery.imgareaselect.min.js.
Espero que les funcione bien, pueden editarlo para poder usar base de datos y todo, es bien facil de entender.
Saludos