Ben bir komut dosyası (http://www.webmotionuk.co.uk/php-jquery-image-upload-and-crop-v11/) bir görüntü işleme kullanmak ve daha sonra bir küçük resim oluşturmak.
Aslında dosya sisteminde görüntüleri depolamak istemiyorum ama ben bir BLOB alanında bir mysql db bunları saklamak istiyorum.
I FS başparmak silebilirsiniz sonra ilk fs üzerinde oluşturulan minik saklamak DB dosya depolamak ve olabilir.
Is there a way to store directly the image on the DB?
Bu fonksiyonu şudur:
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;
}