vote up 0 vote down star

Can't seem to get crop working correctly, problem is, it crops a region of correct dimensions, but always from top left corner (0, 0), instead of from my passed coordinates.

image = Image.open(input)
region = image.crop((1000,400,2000,600)
region.save(output)

In image.py from PIL, method _ImageCrop I've printed out.. :

print x0, y0, x1, y1
self.__crop = x0, y0, x1, y1

Values seem to be correct.

Input is a JPEG image of size 1600x2390.

Python version: 2.5, PIL version: 1.1.6

Any suggestions? Thanks

flag

75% accept rate

1 Answer

vote up 1 vote down

Works For Me: Python 2.6.1, PIL 1.1.6, JPEG of size 2020x1338 pixels.

Are you sure you mean a JPEG of 1600x2390 and not 2390x1600? The (1000,400,2000,600) box dimensions are outside the size of a 1600-wide image; if I try this I get garbage data outside the intersecting area.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.