Hi all
I load a picture like this:
im1 = Image.open(path)
And draw a line on it like this:
imgdraw = im1._draw
imgdraw.line([(0,0), (20,20)], outline=blue, width=3)
But how do I delete the line again? I had tried to make a copy of the 'im1' with:
im1_org = copy.copy(im1)
And when I wan't to delete the line, then copy the 'im1_org' to the 'im1', but it doesn't seems to work. Can anyone tell me how to do it?
Best regard
Ahrensberg

Reply With Quote

