Hi all,
I have this code to make a resize of an uploaded image as a thumbnail.
project.thumbnail = db.Blob(images.resize(self.request.get("img"),188,96))
However, it does not do what I want. It always resize the image to have the fixed height of 96.
Instead, I want to have all the resized images to have the same width of 188.
What should I do?
Thank you,