# -*- coding: utf-8 -*- """Image processing: pillow""" from PIL import Image im = Image.new("RGB", (100, 100), color="red") im.save("red.png") print("pillow image saved")