How can I fill an existing image with a desired color?
(I am using from PIL import Image
and from PIL import ImageDraw
)
This command creates a new image filled with a desired color
image = Image.new("RGB", (self.width, self.height), (200, 200, 200))
But I would like to reuse the same image without the need of calling "new" every time.