from PIL import Image, ImageDraw im = Image.new('RGB', (600, 400), (255, 255, 255)) draw = ImageDraw.Draw(im) # ellipse(x0, y0, x1, y1) # x0, y0 a doboz bal felső sarka # x1, y1 a doboz jobb alsó sarka draw.ellipse((200, 200, 300, 300), fill=(255, 255, 0), outline=(0, 0, 255)) im.show()