AppEngine Images API 仅按宽度调整大小并保持纵横比
用户可以将图片上传到 blobstore,我想将其大小调整为最大宽度仅为 500px。我不想指定高度,因为我希望它保持纵横比。
图像 api 的 resize() 函数似乎也需要高度。这是真的吗?
我怎样才能得到我想要的东西?
A user can upload a picture to blobstore, which I would like to resize to have a maximum of only 500px in width. I don't want to specify the height since I want it to maintain the aspect ratio.
The resize() function of the images api seems to require the height as well. Is this true?
How do I get what I want?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
调整大小方法的 AppEngine API 文档说道:
这听起来正是您想要的。只需指定宽度,高度就会转换为适当的值以保持原始图像的宽高比。
The AppEngine API docs for the resize method say:
This sounds like exactly what you want. Just specify the width, and the height will be transformed into the appropriate value to maintain the aspect ratio of the original image.