open an python enviroment of choice (with the mitk python package installed)
import mitk.ioutil loaded_images = mitk.ioutil.load(file_name) #return array of loaded images clone = loaded_images[0].clone() # the clone is an own image that can be changed / manipulated without changing the original content or meta data. some_test_to_verify_cloning(clone, loaded_images[0])