-
Hi there, I just wanted to check if anyone knows if it's possible to remove a composite/drawing once it has been added? What I am trying to do is the following,
Basically, what I am trying to avoid is the penalty of re-opening the image every time. I can probably create another Image object which always hold the unmodified image but wanted to check first if my question is possible since it will probably consume less memory especially if the image is huge. |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
You will need to maintain a copy of the image if you want to do that. There is no way to go back to the original. You will need to create a |
Beta Was this translation helpful? Give feedback.
You will need to maintain a copy of the image if you want to do that. There is no way to go back to the original. You will need to create a
.Clone()
of the input image.