I encountered some issues to combine EXR. With PNG or anything else, no problem (with ImageMagick).
I have 4 images at same size, which should be combined to get a bigger image. Each image represents a part of the bigger image (top left, top right, bottom left and bottom right). Each image contains N layers with information (colors, depth, etc). Theses layers must be combined in the final image.
Each image has this signature :
$ identify imput_tile_0001.exr
imput_tile_0001.exr EXR 400x225 400x225+0+0 16-bit DirectClass 2.501MB 0.000u 0:00.000
I try ImageMagick simple commands like
$ convert +append *.exr out.exr
$ montage *.exr -tile 2x2 -geometry +0+0 out.exr
Theses commands returns a totally black image, with the correct size, and with only 1 layer.
I am open to any solution with any language or any software, working on Debian.
Edit : The 4 EXR tiles can be found here : https://www.dropbox.com/sh/p6h8kh5wlroy5bb/AACMuR8WieZ-SqB3qXHFwk_ea?dl=0 (These are the "imput_tile...exr").
Any idea?