import Image, ImageDraw image = Image.new("1",(160,43)) draw = ImageDraw.Draw(image) draw.arc((0,0,200,200), 90, 0,fill=1) image.show()