import Image import ImageDraw pilt=Image.new('RGB', (100, 100)) g=ImageDraw.ImageDraw(pilt) g.setink((0, 200, 0)) #roheline g.rectangle((10, 10, 30, 20)) #x1, y1, x2, y2 g.line((40, 10, 40, 20)) #x1, y1, x2, y2 g.setfill(1) #1 täis, 0 tühi g.ellipse((10, 30, 30, 40)) #x1, y1, x2, y2 väline kast g.text((40, 30), "Tere") pilt.save("pilt1.gif", "GIF")