PHP 在用户指定点周围创建缩略图

发布于 2024-11-10 03:57:10 字数 162 浏览 0 评论 0原文

所以我有一个用户图像和一个基于该图像的用户指定的兴趣点。

我从 XML 文件中检索了该兴趣点并将其放入变量中,因此我有 2 个点。

x=246 y= 73

我的问题:如何以上述坐标作为缩略图的中心点裁剪 45 x 53 的缩略图?我根本不想缩放图像,只是裁剪。

So I have a user image and a user specified point of interest based off of that image.

I have retrieved that point of interest from a XML file and put them into variables so I have 2 points.

x= 246
y= 73

My question: How can I crop a 45 by 53 thumbnail image with the above coordinates being the center-point of the thumbnail? I don't want the image to scale at all, just crop.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

无名指的心愿 2024-11-17 03:57:10

对于 GD,它应该这样工作:

// Open source image
$srcImg = imagecreatefromjpeg ( $filename );

// Create new image for the cropped version
$destImg = imagecreate ( 45, 53 );

// Calculate the upper left of the image-part we want to crop
$startX = x - 45 / 2;
$startY = y - 53 / 2;

// Copy image part into the new image
imagecopy ( $destImg, $srcImg , 0, 0, $startX, $startY, 45, 53 );

// Write the new image with quality 90
imagejpeg($destImg, 'newfile.jpg', 90);

您可能需要检查圆角坐标,因为如果不这样做,您的图像可能会模糊。如果用户选择一个角作为 POI,您应该检查裁剪后的图像坐标是否完全在原始图像内。

With GD it should work this way:

// Open source image
$srcImg = imagecreatefromjpeg ( $filename );

// Create new image for the cropped version
$destImg = imagecreate ( 45, 53 );

// Calculate the upper left of the image-part we want to crop
$startX = x - 45 / 2;
$startY = y - 53 / 2;

// Copy image part into the new image
imagecopy ( $destImg, $srcImg , 0, 0, $startX, $startY, 45, 53 );

// Write the new image with quality 90
imagejpeg($destImg, 'newfile.jpg', 90);

You might want to check for rounded coordinates as your image might blur if you don't. You should check if your cropped image coordinates are well within your original image if the user lets say chooses a corner as poi.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文