首頁 >後端開發 >php教程 >如何在 PHP 中優化大圖像的圖像裁剪,同時保留縱橫比?

如何在 PHP 中優化大圖像的圖像裁剪,同時保留縱橫比?

Linda Hamilton
Linda Hamilton原創
2024-11-03 17:25:30819瀏覽

How can I optimize image cropping in PHP for large images while preserving the aspect ratio?

PHP 中的圖像裁剪:優化大圖像和保持寬高比

代碼片段提供了有效的裁剪圖像,但結果可能會惡化當應用於較大的影像時。為了解決這個問題,我們將探索一種替代方法,在裁剪之前調整原始影像的大小,以獲得一致和最佳的結果。

調整大小以保持縱橫比

先前裁剪影像時,必須保持其縱橫比以避免失真。縱橫比是影像的寬度與其高度的比例。透過調整影像大小,使較小的一側與所需的裁剪尺寸相匹配,我們可以保留原始的寬高比。

程式碼實作

要實現影像調整大小和裁剪,我們將修改所提供程式碼的以下部分:

<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 )
{
   // If image is wider than thumbnail (in aspect ratio sense)
   $new_height = $thumb_height;
   $new_width = $width / ($height / $thumb_height);
}
else
{
   // If the thumbnail is wider than the 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, // Center the image horizontally
                   0 - ($new_height - $thumb_height) / 2, // Center the image vertically
                   0, 0,
                   $new_width, $new_height,
                   $width, $height);
imagejpeg($thumb, $filename, 80);</code>

說明

  1. 我們計算原始寬高比(original_aspect)和目標寬高比(thumb_aspect)來決定影像的新尺寸。
  2. 我們檢查原始影像的寬高比是否比縮圖寬。
  3. 如果原始影像較寬,我們設定新的高度以符合縮圖的高度並按比例計算新的寬度。
  4. 如果縮圖較寬,我們設定新的寬度以匹配縮圖的寬度並按比例計算新的高度。
  5. 我們建立一個具有所需縮圖尺寸的新影像 ($thumb)。
  6. 我們使用 imagecopyresampled() 調整原始影像的大小並將其裁切為新的縮圖,同時保持縱橫比。
  7. 最後,我們將裁切後的縮圖儲存到指定檔案中。

透過採用這種方法,我們可以有效地裁剪較大的影像並保留寬高比,從而提供一致且高品質的結果。

以上是如何在 PHP 中優化大圖像的圖像裁剪,同時保留縱橫比?的詳細內容。更多資訊請關注PHP中文網其他相關文章!

陳述:
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn