pillow image text code example
Example 1: font color Imagefont pil
draw.text((margin, offset), line, font=font, fill=(255,0,0,255) )
Example 2: plot path in pillow python
from PIL import Image, ImageDraw
with Image.open("hopper.jpg") as im:
draw = ImageDraw.Draw(im)
draw.line((0, 0) + im.size, fill=128)
draw.line((0, im.size[1], im.size[0], 0), fill=128)
# write to stdout
im.save(sys.stdout, "PNG")