I am using PIL to crop an image with this function:
def crop(logo): im1 = logo.crop((0,20,50,20)) return im1
Very simple and small. B