Hi everyone!
First, thanks for this amazing crate. I am trying to merge 2 exr images into one and getting errors when trying to read the result in Nuke.
I have pinpointed the origin of this problem: when both images have same resolution in all layers, the merge works fine. When one of the images has a smaller layer, with less pixels, the result cannot be read and I get Reader did not set bounding box
I am trying to make sure the "smaller" layers are properly aligned with
let mut new_layer = extra_layer.clone();
new_layer.attributes.layer_position = extra_layer.attributes.layer_position.clone();
What am I missing?
Thanks!