Jaime Rivera

Results 4 comments of Jaime Rivera

Thanks johannes, this is a full example: ``` #![allow(unsafe_op_in_unsafe_fn)] use exr::prelude::*; use pyo3::prelude::*; use std::collections::HashMap; #[pyfunction] fn merge_exr_layers( base_path: &str, extra_path: &str, output_path: &str, layers_to_copy: Vec, ) -> PyResult {...

And it is wrapped with pyo3 so we can use this method from python

Hi @johannesvollmer , thanks for your quick reply. The whole thing of re-setting and re-cloning the channels and attributes manually was just me trying to make double-sure everything was properly...