''' Created on Mar 15, 2014 @author: BrettPaufler Copyright Brett Paufler ''' import Image # This Resizes the Picture # Working with saved copy def resizePicture(x=500, y=500, picPath="max.jpg"): size = x, y im = Image.open(picPath) im.thumbnail(size, Image.ANTIALIAS) im.save ("tk.gif")