建立縮圖:維護影像比例
在您的查詢中,您的目標是從上傳的圖片建立縮圖,確保其保留其外觀比率。讓我們詳細討論一下這個問題:
長寬比的重要性
保持影像的長寬比對於保持其原始形狀和防止變形至關重要。如果沒有保持比例,縮圖可能會被擠壓或拉伸,從而損害影像的視覺完整性。
使用 Imagick 產生縮圖
產生尊重影像外觀的縮圖比,考慮利用 Imagick 庫,它提供進階影像處理功能。以下是一個範例函數:
/** * * Generate Thumbnail using Imagick class * * @param string $img * @param string $width * @param string $height * @param int $quality * @return boolean on true * @throws Exception * @throws ImagickException */ function generateThumbnail($img, $width, $height, $quality = 90) { if (is_file($img)) { $imagick = new Imagick(realpath($img)); $imagick->setImageFormat('jpeg'); $imagick->setImageCompression(Imagick::COMPRESSION_JPEG); $imagick->setImageCompressionQuality($quality); $imagick->thumbnailImage($width, $height, false, false); $filename_no_ext = reset(explode('.', $img)); if (file_put_contents($filename_no_ext . '_thumb' . '.jpg', $imagick) === false) { throw new Exception("Could not put contents."); } return true; } else { throw new Exception("No valid image provided with {$img}."); } }
此函數使用thumbnailImage 方法產生具有指定寬度和高度的縮圖,同時保留原始寬高比。
替代縮圖來產生
或者,您可以使用 GD 函式庫來建立縮圖。這種方法需要更多的手動計算,因為您需要確定適當的尺寸來保持影像的寬高比。
以下範例函數示範如何使用 GD 函式庫建立縮圖:
function makeThumbnails($updir, $img, $id) { $thumbnail_width = 134; $thumbnail_height = 189; $thumb_beforeword = "thumb"; $arr_image_details = getimagesize("$updir" . $id . '_' . "$img"); // pass id to thumb name $original_width = $arr_image_details[0]; $original_height = $arr_image_details[1]; if ($original_width > $original_height) { $new_width = $thumbnail_width; $new_height = intval($original_height * $new_width / $original_width); } else { $new_height = $thumbnail_height; $new_width = intval($original_width * $new_height / $original_height); } $dest_x = intval(($thumbnail_width - $new_width) / 2); $dest_y = intval(($thumbnail_height - $new_height) / 2); if ($arr_image_details[2] == IMAGETYPE_GIF) { $imgt = "ImageGIF"; $imgcreatefrom = "ImageCreateFromGIF"; } if ($arr_image_details[2] == IMAGETYPE_JPEG) { $imgt = "ImageJPEG"; $imgcreatefrom = "ImageCreateFromJPEG"; } if ($arr_image_details[2] == IMAGETYPE_PNG) { $imgt = "ImagePNG"; $imgcreatefrom = "ImageCreateFromPNG"; } if ($imgt) { $old_image = $imgcreatefrom("$updir" . $id . '_' . "$img"); $new_image = imagecreatetruecolor($thumbnail_width, $thumbnail_height); imagecopyresized($new_image, $old_image, $dest_x, $dest_y, 0, 0, $new_width, $new_height, $original_width, $original_height); $imgt($new_image, "$updir" . $id . '_' . "$thumb_beforeword" . "$img"); } }
使用這些功能中的任何一個都將為您提供保留原始影像長寬比的縮圖。
以上是創建縮圖時如何保持圖像比例?的詳細內容。更多資訊請關注PHP中文網其他相關文章!