Google Python 图像库 - 如何根据宽度调整图像大小?
我有这段代码可以将上传的图像调整为缩略图大小。
project.thumbnail = db.Blob(images.resize(self.request.get("img"),188,96))
但是,它并没有达到我想要的效果。它总是将图像大小调整为固定高度 96。
相反,我想让所有调整大小的图像具有相同的宽度 188。
我该怎么办?
谢谢你,
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,
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以将其称为
images.resize(data, width=188)
You can call this as
images.resize(data, width=188)