I want to use the Python API binding for ImageMagick http://wand-py.org for direct image management. However, I cannot deduce from the documentation how to use grayscale conversion. Can someone provide information on this issue?
from wand.image import Image try: with Image(file=path) as img: img.grayscale()
user2075719
source share