我需要幫助朋友建立自己的藝術畫廊。 我已經全部完成了,但是我需要一個工具/插件/腳本來讓他獨立於我,無需上傳他自己的圖片。我的畫廊需要兩個圖像:一個裁剪的比例(所以我需要他自己在上傳頁面裁剪)和一個拇指(我想這是自動完成)。圖像裁剪和拇指創作
你知道一個簡單的方法來做到這一點嗎?你會怎麼做?
謝謝。
我需要幫助朋友建立自己的藝術畫廊。 我已經全部完成了,但是我需要一個工具/插件/腳本來讓他獨立於我,無需上傳他自己的圖片。我的畫廊需要兩個圖像:一個裁剪的比例(所以我需要他自己在上傳頁面裁剪)和一個拇指(我想這是自動完成)。圖像裁剪和拇指創作
你知道一個簡單的方法來做到這一點嗎?你會怎麼做?
謝謝。
我個人使用這個在我的所有項目中 - http://www.verot.net/php_class_upload.htm 與上傳文件和系統中已有的文件完美配合。
可以通過多種方式對上傳的圖像進行轉換,調整大小和工作,應用效果,添加標籤,水印和反射以及其他圖像編輯功能。
易於使用。
如果你不會有繁忙的流量開始 - 看http://phpthumb.sourceforge.net/它可以創建您的動態調整大小的圖像。
您只需要GD庫,函數imagecopyresampled將適合您。 PHP手冊中有創建縮略圖真的很好的例子代碼http://php.net/manual/en/function.imagecopyresampled.php 你只需要爲不同的文件格式創建例外
function create_jpeg_thumbnail($thumbImageName,$imgSrc,$thumbDirectory,$thumbnail_width,$thumbnail_height) { //$imgSrc is a FILE - Returns an image resource.
$thumbDirectory = trim($thumbDirectory);
$imageSourceExploded = explode('/', $imgSrc);
$imageName = $imageSourceExploded[count($imageSourceExploded)-1];
$imageDirectory = str_replace($imageName, '', $imgSrc);
$filetype = explode('.',$imageName);
$filetype = strtolower($filetype[count($filetype)-1]);
//getting the image dimensions
list($width_orig, $height_orig) = getimagesize($imgSrc);
//$myImage = imagecreatefromjpeg($imgSrc);
if ($filetype == 'jpg') {
$myImage = imagecreatefromjpeg("$imageDirectory/$imageName");
} else
if ($filetype == 'jpeg') {
$myImage = imagecreatefromjpeg("$imageDirectory/$imageName");
} else
if ($filetype == 'png') {
$myImage = imagecreatefrompng("$imageDirectory/$imageName");
} else
if ($filetype == 'gif') {
$myImage = imagecreatefromgif("$imageDirectory/$imageName");
}
$ratio_orig = $width_orig/$height_orig;
if ($thumbnail_width/$thumbnail_height > $ratio_orig) {
$new_height = $thumbnail_width/$ratio_orig;
$new_width = $thumbnail_width;
} else {
$new_width = $thumbnail_height*$ratio_orig;
$new_height = $thumbnail_height;
}
$x_mid = $new_width/2; //horizontal middle
$y_mid = $new_height/2; //vertical middle
$process = imagecreatetruecolor(round($new_width), round($new_height));
imagecopyresampled($process, $myImage, 0, 0, 0, 0, $new_width, $new_height, $width_orig, $height_orig);
$thumb = imagecreatetruecolor($thumbnail_width, $thumbnail_height);
imagecopyresampled($thumb, $process, 0, 0, 0, 0, $thumbnail_width, $thumbnail_height, $thumbnail_width, $thumbnail_height);
//$thumbImageName = 'thumb_'.get_random_no().'.jpeg';
$destination = $thumbDirectory=='' ? $thumbImageName : $thumbDirectory."/".$thumbImageName;
imagejpeg($thumb, $destination, 100);
return $thumbImageName;
}
使用這個答案圖像大小調整和創建縮略圖http://stackoverflow.com/questions/10069981/圖像獲取拉伸/ 10070222#10070222 – nithi