Skip to content

Instantly share code, notes, and snippets.

View patrickwebs's full-sized avatar

Patrick Carroll patrickwebs

View GitHub Profile
@patrickwebs
patrickwebs / test.py
Created November 18, 2011 19:46
Simple image resizer
#!/usr/bin/env python
import sys
from PIL import Image
if __name__ == "__main__":
if len(sys.argv) != 3:
print >>sys.stderr, "Usage: %s [INPUT] [OUTPUT]" % sys.argv[0]
sys.exit(1)
img = Image.open(sys.argv[1])