Python, PIL, crop problem - Stack Overflow most recent 30 from stackoverflow.com2009-11-27T17:37:39Zhttp://stackoverflow.com/feeds/question/622783http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/622783/python-pil-crop-problem0Python, PIL, crop problemKarolis2009-03-08T00:07:03Z2009-03-08T00:42:38Z
<p>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.</p>
<pre><code>image = Image.open(input)
region = image.crop((1000,400,2000,600)
region.save(output)
</code></pre>
<p>In image.py from PIL, method _ImageCrop I've printed out.. :</p>
<pre><code>print x0, y0, x1, y1
self.__crop = x0, y0, x1, y1
</code></pre>
<p>Values seem to be correct.</p>
<p>Input is a JPEG image of size 1600x2390.</p>
<p>Python version: 2.5,
PIL version: 1.1.6</p>
<p>Any suggestions? Thanks</p>
http://stackoverflow.com/questions/622783/python-pil-crop-problem/622821#6228211Answer by bobince for Python, PIL, crop problembobince2009-03-08T00:42:38Z2009-03-08T00:42:38Z<p>Works For Me: Python 2.6.1, PIL 1.1.6, JPEG of size 2020x1338 pixels.</p>
<p>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.</p>