emcconville / wand

The ctypes-based simple ImageMagick binding for Python
http://docs.wand-py.org/
Other
1.42k stars 199 forks source link

Saving an image with a colon in its name results in an incorrect file name #657

Closed taranlu-houzz closed 6 months ago

taranlu-houzz commented 6 months ago

OS: macOS 13.6.6 (22G630) CPU: M1Pro

emcconville commented 6 months ago

The colon character is restricted with ImageMagick as it's part of the coder protocol. For example...

# Force PNG 48-bit RGB
img.save(filename='png48:boop.png')

Possible Solutions