In [9]:
from PIL import Image, ImageDraw
img = Image.new('RGBA', (300, 300), (255, 0, 0, 0))
draw = ImageDraw.Draw(img)
draw.ellipse((125, 25, 275, 275), fill=(0, 255, 0))
img.save('image.png', 'PNG')
img
Out[9]:
También te puede interesar:
Referencias¶
- 101 Numpy
- 102 Matplotlib: Python plotting — Matplotlib 3.3.3 documentation
- 103 ImageDraw Module — Pillow (PIL Fork) 8.0.1 documentation
- 104 Image tutorial — Matplotlib 3.3.3 documentation
- 105 How to CREATE a transparent gif (or png) with PIL (python-imaging) - Stack Overflow
- 106 matplotlib.image — Matplotlib 3.1.2 documentation
No hay comentarios.:
Publicar un comentario