Pillow Tutorial

This is a starting point for a Pillow tutorial. See the Pillow docs for inspiration.

### Canvas
from PIL import Image
from space_tracer import LivePillowImage

image = Image.open('hopper.jpg')
scale = 0.75
image = image.resize((
    round(image.width*scale),
    round(image.height*scale)))

image.show()