Replies: 1 comment
-
It looks like the ImageMagick currently has no support for reading multiple layers in an exr file. Is it possible to share a file so I can see if it would be possible to add support for this? |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Hello, all!
I have an EXR file which has multiple layers. I am trying to open it and read the layers one-by-one like this:
The result is that I receive only the first layer, containing the RGBA color data. The other layers are not returned, i.e. the collection contains only a single image.
I have also tried to create a multi-layer image myself:
The above code tries to create a single multi-layer image form multiple PNG files. This produces a single TIFF file with multiple pages, which is expected. Unfortunately, the EXR output consists of multiple files: image-0.exr, image-1.exr, image-2.exr, etc.
What am I doing wrong?
Beta Was this translation helpful? Give feedback.
All reactions