10

我想使用 ImageMagick http://wand-py.org的 Python API 绑定来直接操作图像。但是,我无法从文档中推断出如何使用灰度转换。任何人都可以提供有关此问题的信息吗?

from wand.image import Image
try:
  with Image(file=path) as img:
    img.grayscale() # PSEUDOCODE for my given problem
except:
  pass
4

2 回答 2

20

这可以通过设置图像的色彩空间来实现。

from wand.image import Image
with Image(filename='color.jpg') as img:
    img.type = 'grayscale';
    img.save(filename='grayscale.jpg');

进一步阅读:

于 2013-05-03T14:30:54.717 回答
1

这是正确的代码:

您需要转换色彩空间:

  with Image(filename=str(f)) as img:
        img.transform_colorspace('gray')
于 2019-10-29T10:26:28.347 回答