TODO: Write a project description
TODO: Describe the installation process
#!/usr/bin/env python | |
from PIL import Image | |
import sys | |
im = Image.open(sys.argv[1]) | |
def scale_to_width(dimensions, width): | |
height = (width * dimensions[1]) / dimensions[0] |