使用 PHP/GD,如何修剪图像?
我想用 GD 和 PHP 来模仿 Photoshop 的修剪行为(裁剪所有侧面都被相同颜色覆盖的区域),但我缺乏关于如何实现的想法来实现这一目标。
如果有人对如何做到这一点有任何想法,我非常想听听。
提前致谢。
I want to mimic the trim behavior of Photoshop (crop the area that is covered by the same color on all sides) with GD and PHP but I'm lacking ideas on how to accomplish this.
If someone has any idea on how to do this I would very much like to hear it.
Thanks in advance.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我能想到的最简单的解决方案是:
未经测试但可能有效。
顺便说一句,ImageMagick 可以开箱即用:http://www.imagemagick.org/用法/裁剪/#trim
The easiest solution I can think of is:
Untested but might work.
BTW, ImageMagick can do this out of the box: http://www.imagemagick.org/Usage/crop/#trim
这是一个示例函数(也可以添加填充):
Here's a sample function (which also can add padding):