Turns out, copying an image using Clone really does make an exact copy. You can’t just open an image, clone it, then safely close it as you might expect, because it also copies the file lock.
Instead, copy the image in memory using Image copy = new Image(source).
-
Home > lock