从现有大图像的中心生成缩略图
我前段时间读过关于从较大图像生成缩略图的想法,不是从左上角开始,而是从较大图像的中心开始。
谁能告诉我如何用 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
对于任何类型的大小调整,您通常使用
imagecopy
方法之一:src_
参数指定要复制源图像的哪一部分。只要将其设为 0, 0 以外的任何值即可。For resizing of any kind, you usually use one of the
imagecopy
methods:The
src_
parameters specify what part of the source image to copy. Just make that anything other than 0, 0.