如何使用 ImageMagick 转换命令删除图像的纯色背景

发布于 2024-10-30 20:36:38 字数 333 浏览 0 评论 0原文

我正在寻找一种方法使图像的纯色背景变得尽可能透明(几乎没有光晕)。 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 技术交流群。

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

发布评论

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

评论(1

韬韬不绝 2024-11-06 20:36:38

作为一种启发式方法,您可以询问角落处像素的颜色 (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...

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