首頁 >後端開發 >php教程 >在 PHP 中裁切影像時如何保持影像長寬比?

在 PHP 中裁切影像時如何保持影像長寬比?

Patricia Arquette
Patricia Arquette原創
2024-11-03 16:46:03523瀏覽

How to Maintain Image Aspect Ratio When Cropping Images in PHP?

PHP中的影像裁切

在 PHP 中裁切影像時,可能會遇到問題,特別是處理大影像時。一種解決方法是“縮小圖像”。

在給定的範例程式碼中,影像被裁切為固定尺寸(200x150),這可能不適合較大的影像。為了在裁剪前獲得一致的圖像尺寸,建議使用 imagecopyresampled() 函數。

可以使用以下公式來產生縮圖:

$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 )
{
    // 图像更宽(纵横比意义上)
    $new_height = $thumb_height;
    $new_width = $width / ($height / $thumb_height);
}
else
{
    // 缩略图更宽
    $new_width = $thumb_width;
    $new_height = $height / ($width / $thumb_width);
}

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

// 调整大小并裁剪
imagecopyresampled($thumb,
    $image,
    0 - ($new_width - $thumb_width) / 2, // 水平居中图像
    0 - ($new_height - $thumb_height) / 2, // 垂直居中图像
    0, 0,
    $new_width, $new_height,
    $width, $height);
imagejpeg($thumb, $filename, 80);

此程式碼考慮了影像縱橫比,確保調整大小後的影像與縮圖大小的縱橫比相同,從而防止失真。調整大小和裁剪後,它將產生一致大小的圖像,無論原始圖像大小如何。

以上是在 PHP 中裁切影像時如何保持影像長寬比?的詳細內容。更多資訊請關注PHP中文網其他相關文章!

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