I am looking for a command that will draw a circle on an existing image with PIL.
im = Image.open(path)
I want a function that will draw a colo
Use ImageDraw.ellipse with square bbox like (0,0,10,10), which mean with diameter 10.