我有一个白色背景的图像,并且想将白色背景转换为透明。我怎样才能用 Wand 做到这一点?
执行此操作的 ImageMagick 命令是:
convert ~/Desktop/cat_with_white_gb.png -transparent white ~/Desktop/cat_with_transparent_bg.png
我努力了:
import urllib2
fg_url = 'http://i.stack.imgur.com/Mz9y0.jpg'
fg = urllib2.urlopen(fg_url)
with Image(file=fg) as img:
img.background_color = Color('transparent')
img.save(filename='test.png')
和
with Image(file=fg) as fg_img:
with Color('#FFF') as white:
fg_img.transparent_color(white, 0.0)