gpt4 book ai didi

php - 在 PHP 中裁剪图像

转载 作者:IT老高 更新时间:2023-10-28 12:03:11 27 4
gpt4 key购买 nike

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

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

代码是

<?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>';

最佳答案

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

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

以下是创建缩略图的通用公式:

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

尚未对此进行测试,但它应该工作。

编辑

现在已经过测试并且可以工作了。

关于php - 在 PHP 中裁剪图像,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/1855996/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com