I'm a long time user of imagemagick which I love, and for the first time I'm facing an issue I can't find any help around. So here is my first post here !
I'm in need of saving exr images after making some convert magics. Everything is working fine with the Exr, except I can't use the DWAA or DWAB compression format. Every other EXR compression method looks to be working fine (None, Zip, Piz, B44, PXR24, etc.) except from the two official DWA methods, which are not available.
I'm on windows, with the last stable release of ImageMagick
Here is the command I'm using
Code: Select all
convert.exe input [...] -compress Piz output.exr
Code: Select all
convert.exe: unrecognized image compression `Dwaa' @ error/convert.c/ConvertImageCommand/1147.
Here is the list of compression methods where Dwaa is missing of course :
Code: Select all
convert.exe -list compress
B44A
B44
BZip
DXT1
DXT3
DXT5
Fax
Group4
JBIG1
JBIG2
JPEG2000
JPEG
LosslessJPEG
Lossless
LZMA
LZW
None
Piz
Pxr24
RLE
RunlengthEncoded
WebP
ZipS
Zip
Zstd
Or also here perfectly listed on the exr list of compression methods : https://github.com/ImageMagick/exr/blob ... n.cpp#L151
Maybe the absence of Dwaa is on purpose ? Or maybe I'm not using the right parameter ?
Have a nice day !
Flavio