I seem to be having some trouble getting this code to work:
import Image, ImageDraw im = Image.open(\"1.jpg\") draw = ImageDraw.Draw(im) draw.ellipse((60,
The ellipse function draws an ellipse within a bounding box. So you need to use draw.ellipse((40,40,60,60)) or other coordinates where the top left is smaller than the bottom right.
draw.ellipse((40,40,60,60))