PHP 在用户指定点周围创建缩略图
所以我有一个用户图像和一个基于该图像的用户指定的兴趣点。
我从 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
对于 GD,它应该这样工作:
您可能需要检查圆角坐标,因为如果不这样做,您的图像可能会模糊。如果用户选择一个角作为 POI,您应该检查裁剪后的图像坐标是否完全在原始图像内。
With GD it should work this way:
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.