从现有大图像的中心生成缩略图

发布于 2024-11-27 18:45:06 字数 80 浏览 0 评论 0原文

我前段时间读过关于从较大图像生成缩略图的想法,不是从左上角开始,而是从较大图像的中心开始。

谁能告诉我如何用 php 做到这一点?

I've read some time ago about the idea of generating a thumbnail image from a bigger image not starting from the top left corner but from the center of the bigger image.

Can anybody tell how to do that with php?

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

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

发布评论

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

评论(1

三生路 2024-12-04 18:45:06

对于任何类型的大小调整,您通常使用 imagecopy 方法之一:

imagecopy ( resource $dst_im , resource $src_im , int $dst_x , int $dst_y ,
            int $src_x , int $src_y , int $src_w , int $src_h )

src_ 参数指定要复制源图像的哪一部分。只要将其设为 0, 0 以外的任何值即可。

For resizing of any kind, you usually use one of the imagecopy methods:

imagecopy ( resource $dst_im , resource $src_im , int $dst_x , int $dst_y ,
            int $src_x , int $src_y , int $src_w , int $src_h )

The src_ parameters specify what part of the source image to copy. Just make that anything other than 0, 0.

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