RMagick从图像中删除白色背景并使其透明

时间:2011-10-12 10:12:31

标签: ruby image imagemagick image-manipulation rmagick

我需要从此图像中删除白色背景并使背景透明。所以它只是透明背景上的黑色刻度,导出为png。

e.g。转

enter image description here

enter image description here

有什么想法吗?

3 个答案:

答案 0 :(得分:9)

convert image.png -matte -fill none -fuzz 1% -opaque white result.png

用透明度替换任何白色。模糊选项包括几乎是白色的任何东西。

答案 1 :(得分:2)

我知道我参加派对已经很晚了,但自从这个问题首次发布以来已经发生了很多变化,所以今天至少使用2.15.4 rmagick的{​​{1}} < / p>

假设您在某处可以访问该图像:

image = Magick::Image.new(path_to_file)
image.background_color = 'none'

如果您还想修剪图片,使其仅与边界一样大,只需使用.trim!

image.trim!

编辑:

原来上面的解决方案并不适用于所有用例。更通用的解决方案是:

# the image needs to be in 'PNG' format
image.format = 'PNG'

# set a fuzz on the image depending on how accurate you want to be
image.fuzz = '10%'

# get the image background color
background_color = image.background_color

# convert pixels based on their color to being transparent
# the fuzz set above controls how accurate the conversion will be
image.paint_transparent(background_color)

答案 2 :(得分:1)

使用以下命令使用v6.8.4-Q16:

convert nike.png -matte -fill none -fuzz 1% -opaque white nikeOutput.png

结果:

enter image description here

这是我使用的命令:

convert nike.jpg -transparent white NikeProd.png

enter image description here

enter image description here