首页  >  文章  >  后端开发  >  如何在 PHP 中有效裁剪大图像?

如何在 PHP 中有效裁剪大图像?

Susan Sarandon
Susan Sarandon原创
2024-11-03 18:49:02997浏览

How to Effectively Crop Large Images in PHP?

在 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 )
{
   // 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>

此代码首先调整图像大小,然后裁剪它。通过调整调整大小参数,您可以控制纵横比并保持缩略图大小一致。

以上是如何在 PHP 中有效裁剪大图像?的详细内容。更多信息请关注PHP中文网其他相关文章!

声明:
本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系admin@php.cn