如何優化 PHP 中大圖像的影像裁切?

Barbara Streisand
發布: 2024-11-04 11:27:02
原創
721 人瀏覽過

How to Optimize Image Cropping in PHP for Large Images?

在PHP 中針對大影像最佳化影像裁切

提供的程式碼可以有效地裁切影像,但在處理較大影像時遇到限制。為了解決這個問題,我們需要探索在裁剪圖像之前「縮小」或調整圖像大小的技術。無論圖像大小如何,這都可以確保一致的結果。

要建立縮圖,第一步是使用 imagecopyresampled() 調整影像大小。確定影像的較小尺寸和縮圖的相應尺寸。例如,如果您的影像為 1280x800 像素,縮圖為 200x150 像素,請將影像大小調整為 240x150 像素。這會保持影像的縱橫比。

這是建立縮圖的通用公式:

<code class="php">$image = imagecreatefromjpeg($_GET['src']);
$filename = 'images/cropped_whatever.jpg';

$thumb_width = 200;
$thumb_height = 150;

$width = imagesx($image);
$height = imagesy($image);

$original_aspect = $width / $height;
$thumb_aspect = $thumb_width / $thumb_height;

if ($original_aspect >= $thumb_aspect) {
    // Image wider than thumbnail
    $new_height = $thumb_height;
    $new_width = $width / ($height / $thumb_height);
} else {
    // Thumbnail wider than image
    $new_width = $thumb_width;
    $new_height = $height / ($width / $thumb_width);
}

$thumb = imagecreatetruecolor($thumb_width, $thumb_height);

// Resize and crop
imagecopyresampled($thumb, $image,
    0 - ($new_width - $thumb_width) / 2, // Horizontally center the image
    0 - ($new_height - $thumb_height) / 2, // Vertically center the image
    0, 0,
    $new_width, $new_height,
    $width, $height);
imagejpeg($thumb, $filename, 80);</code>
登入後複製

此程式碼應有效地調整影像大小和裁剪影像以獲得最佳化結果。

以上是如何優化 PHP 中大圖像的影像裁切?的詳細內容。更多資訊請關注PHP中文網其他相關文章!

來源:php.cn
本網站聲明
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn
作者最新文章
熱門教學
更多>
最新下載
更多>
網站特效
網站源碼
網站素材
前端模板
關於我們 免責聲明 Sitemap
PHP中文網:公益線上PHP培訓,幫助PHP學習者快速成長!