From 2d0f9c6c0b51e9b927d26036fe5f6953485de2ed Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jure=20=C5=A0orn?= Date: Tue, 1 Oct 2019 14:18:40 +0200 Subject: [PATCH] ImageDraw --- README.md | 2 +- index.html | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 1f0519b..4e3d3da 100644 --- a/README.md +++ b/README.md @@ -2668,7 +2668,7 @@ from PIL import ImageDraw ``` * **Use `'fill='` to set the primary color.** * **Use `'outline='` to set the secondary color.** -* **Colors can be specified as tuple, int, `'#rrggbb'` string or a color name.** +* **Color can be specified as a tuple, int, `'#rrggbb'` string or a color name.** Animation diff --git a/index.html b/index.html index b77714d..d21a0c1 100644 --- a/index.html +++ b/index.html @@ -2275,7 +2275,7 @@ img.convert('RGB').save('fill=<color>' to set the primary color.
  • Use 'outline=<color>' to set the secondary color.
  • -
  • Colors can be specified as tuple, int, '#rrggbb' string or a color name.
  • +
  • Color can be specified as a tuple, int, '#rrggbb' string or a color name.
  • #Animation

    Creates a GIF of a bouncing ball:

    # $ pip3 install pillow imageio
     from PIL import Image, ImageDraw