lhpku20010120's picture
Release WorkSurface-Build v0.1.0 public benchmark inputs
b6beed8 verified
Raw
History Blame Contribute Delete
171 Bytes
# -*- 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")