gpt4 book ai didi

python - 使用 python wand 对图像进行灰度化

转载 作者:太空狗 更新时间:2023-10-29 19:35:26 34 4
gpt4 key购买 nike

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

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

最佳答案

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

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

进一步阅读:

关于python - 使用 python wand 对图像进行灰度化,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16145959/

34 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com