在 PHP 中裁剪图像

2022-08-30 09:16:07

下面的代码很好地裁剪了图像,这是我想要的,但是对于较大的图像,它也可以工作。有没有办法“缩小图像”

理想情况下,我可以在裁剪之前使每个图像的大小大致相同,这样我每次都能获得良好的效果

代码是

<?php

$image = $_GET['src']; // the image to crop
$dest_image = 'images/cropped_whatever.jpg'; // make sure the directory is writeable

$img = imagecreatetruecolor('200','150');
$org_img = imagecreatefromjpeg($image);
$ims = getimagesize($image);
imagecopy($img,$org_img, 0, 0, 20, 20, 200, 150);
imagejpeg($img,$dest_image,90);
imagedestroy($img);
echo '<img src="'.$dest_image.'" ><p>';

答案 1

如果尝试生成缩略图,必须首先使用 调整图像大小。必须调整图像大小,以便图像较小一侧的大小等于拇指的相应一侧。imagecopyresampled();

例如,如果源图像为 1280x800 像素,拇指为 200x150 像素,则必须将图像大小调整为 240x150px,然后将其裁剪为 200x150px。这样图像的纵横比就不会改变。

下面是用于创建缩略图的常规公式:

$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);

还没有测试过,但它应该有效。

编辑

现已测试并正常工作。


答案 2

imagecopyresampled()将从位置处的宽度和高度取一个矩形区域,并将其放置在位置处具有宽度和高度的矩形区域中。$src_image$src_w$src_h($src_x, $src_y)$dst_image$dst_w$dst_h($dst_x, $dst_y)

如果源坐标和目标坐标以及宽度和高度不同,则将对图像片段进行适当的拉伸或缩小。坐标是指左上角。

此函数可用于复制同一映像中的区域。但如果这些区域重叠,结果将是不可预测的。

- 编辑 -

如果 和 分别小于 和,则将放大拇指图像。否则,它将被缩小。$src_w$src_h$dst_w$dst_h

<?php
$dst_x = 0;   // X-coordinate of destination point
$dst_y = 0;   // Y-coordinate of destination point
$src_x = 100; // Crop Start X position in original image
$src_y = 100; // Crop Srart Y position in original image
$dst_w = 160; // Thumb width
$dst_h = 120; // Thumb height
$src_w = 260; // Crop end X position in original image
$src_h = 220; // Crop end Y position in original image

// Creating an image with true colors having thumb dimensions (to merge with the original image)
$dst_image = imagecreatetruecolor($dst_w, $dst_h);
// Get original image
$src_image = imagecreatefromjpeg('images/source.jpg');
// Cropping
imagecopyresampled($dst_image, $src_image, $dst_x, $dst_y, $src_x, $src_y, $dst_w, $dst_h, $src_w, $src_h);
// Saving
imagejpeg($dst_image, 'images/crop.jpg');
?>

推荐