如何使用 PHP 在图像上仅隔离一种颜色?
是否可以在图像中仅留下(隔离)一种颜色? 目前我对绿色感兴趣:005d00
Is it possible to leave (isolate) only one colour in image?
Currently I'm interested in green:005d00
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可以使用 gd 的
imagecolorat()
功能。只需迭代每个像素,检查它是否是您想要的颜色,否则 set< /a> 将其设置为黑色或白色或任何你想用它做的事情。
这是一个工作示例:
You could use gd's
imagecolorat()
function.Just iterate over every pixel, check if it is the color you want, otherwise set it to black or white or whatever you want to do with it.
Here's a working example:
那么,您可以通过命令行使用 ImageMagick 来完成此操作:
-fuzz 命令可以从颜色中获取百分比差异,如果是特定的,则删除绒毛。
() 括号需要在 bash shell \( \) 等中转义。
Well you can do it using ImageMagick via the command line:
The -fuzz command can take a percentage variance from the colour, if it's specific, drop the fuzz.
The () brackets need escaping in bash shell \( \), etc.