在 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中文网其他相关文章!