2

所以,我正在使用Wand Python Library来处理一些图像。

我只是希望它逐个像素地查看图像,并且对于特定颜色的每个像素,例如“4d4d4d”,将该像素颜色替换为其他颜色,例如“#00ff00”。而已。我已经彻底搜索了文档,但我一生都无法弄清楚如何做到这一点。

4

1 回答 1

1

如果有人感兴趣,python 代码将是这样的:

from wand.image import Image
from wand.drawing import Drawing
from wand.color import Color

with Drawing() as draw:
    draw.fill_color = Color('#00ff00')
    draw.color(x,y,'replace')
    with Image(filename='image.jpg') as img:
        draw(img)
        img.save(filename='new_image.jpg')
于 2015-11-30T00:03:41.893 回答