tags:

views:

358

answers:

1

Edit: Does PIL resize to the exact dimensions I give it no matter what? Or will it try to keep the aspect ratio if I give it something like the Image.ANTIALIAS argument?

A: 

http://stackoverflow.com/questions/273946/how-do-i-resize-an-image-using-pil-and-maintain-its-aspect-ratio

Image.resize from PIL will do exactly as told. Ne behind scenes aspect ratio stuff.

Kugel