如何使用 ImageMagick 转换命令删除图像的纯色背景
我正在寻找一种方法使图像的纯色背景变得尽可能透明(几乎没有光晕)。 ImageMagick 是一个功能强大的工具,但使用起来并不容易。我尝试了一个命令
convert image.jpg \
-bordercolor white \
-border 1x1 \
-alpha set \
-channel RGBA \
-fuzz 20% \
-fill none \
-floodfill +0+0 white \
-shave 1x1 \
image.png
,效果还不错。然而,这要求我知道纯色背景的确切颜色,同时我需要一些可以处理任何背景颜色的东西。有人可以帮我解决这个问题吗?钍
I'm finding a way to make the solid background of an image become as transparent as possible (with little halo). ImageMagick is a powerful tool however it's not easy to use. I tried one command
convert image.jpg \
-bordercolor white \
-border 1x1 \
-alpha set \
-channel RGBA \
-fuzz 20% \
-fill none \
-floodfill +0+0 white \
-shave 1x1 \
image.png
, which works kinda well. However, this requires me to know the exact color of the solid background while I need something to work with any background color. Anyone could help me with this? Th
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
作为一种启发式方法,您可以询问角落处像素的颜色 (http://studio.imagemagick.org/pipermail/magick-users/2005-March/015034.html),然后查看哪种颜色使用最多。不过,这并不完全是万无一失的……
As a heuristic, you could ask for the color of the pixels at the corners (http://studio.imagemagick.org/pipermail/magick-users/2005-March/015034.html) and then see which color is used the most. Not exactly fool-proof, though...