Is there an obvious way to do this that I'm missing? I'm just trying to make thumbnails.
|
|
|
|
|
|
|
Define a maximum size.
Then, compute a resize ratio by taking The proper size is There is of course also a library method to do this: the method
|
|||
|
|
|
|
I also recommend using PIL's thumbnail method, because it removes all the ratio hassles from you. One important hint, though: Replace
with
by default, PIL uses the Image.NEAREST filter for resizing which results in good performance, but poor quality. |
||
|
|
|
|
This script will resize an image (somepic.jpg) using PIL (Python Imaging Library) to a width of 300 pixels and a height proportional to the new width. It does this by determining what percentage 300 pixels is of the original width (img.size[0]) and then multiplying the original height (img.size[1]) by that percentage. Change "basewidth" to any other number to change the default width of your images.
|
||
|
|
|
If you are trying to maintain the same aspect ratio, then wouldn't you resize by some percentage of the original size? For example, half the original size
|
||
|
|
