好了,在我的網站我想裁剪圖像具有以下PHP函數:如何在不丟失使用php上傳的圖像的任何部分的情況下裁剪圖像?
function image_resize($target, $newcopy, $w, $h, $ext) {
list($w_orig, $h_orig) = getimagesize($target);
$scale_ratio = $w_orig/$h_orig;
if (($w/$h) > $scale_ratio) {
$w = $h * $scale_ratio;
} else {
$h = $w/$scale_ratio;
}
$img = "";
$ext = strtolower($ext);
if ($ext == "gif"){
$img = imagecreatefromgif($target);
} else if($ext =="png"){
$img = imagecreatefrompng($target);
} else {
$img = imagecreatefromjpeg($target);
}
$tci = imagecreatetruecolor($w, $h);
$backgroundColor = imagecolorallocate($tci, 255, 255, 255);
imagefill($tci, 0, 0, $backgroundColor);
// imagecopyresampled(dst_img, src_img, dst_x, dst_y, src_x, src_y, dst_w, dst_h, src_w, src_h)
imagecopyresampled($tci, $img, 0, 0, 0, 0, $w, $h, $w_orig, $h_orig);
if ($ext == "gif"){
imagegif($tci, $newcopy);
} else if($ext =="png"){
imagepng($tci, $newcopy);
} else {
imagejpeg($tci, $newcopy, 84);
}
}
但它不工作我真正想要。
例如:我有一個圖像的尺寸是:720 x 478
。當我用這個函數調整它的大小時(我可以在函數調用中設置寬度和高度),它會根據寬度裁剪圖像。對於例如我這樣稱呼:
image_resize($file_destination, "../users_avator/ppic_$file_new_name", 200, 200, $file_ext);
它保存了200 x 132大小的圖像。 但我不希望
我要裁剪的圖像精確地200×200的大小,但而不切斷圖像的任何部分。像:
我看到一個名爲cozymeal.com網站當我在型材截面尺寸720 x 478
它的神奇裁剪圖像大小200×200 無需切割圖像的任何部分上傳相同的圖像。
原始圖像:
我的裁剪結果:
Cozymeal裁剪結果:
我的問題是我該如何修復我的功能/裁剪像這個cozymeal.com裁剪系統的任何圖像?我的意思是自定義大小而不丟失任何圖像部分。
我會建議利用imagick如果它提供給你。如果您想要,我可以發佈一個示例代碼。 – jjonesdesign
使用此自定義功能。 –
有沒有解決方案@jjonesdesign? –