AppEngine Images API 仅按宽度调整大小并保持纵横比

发布于 2024-10-12 02:30:58 字数 136 浏览 3 评论 0原文

用户可以将图片上传到 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

亢潮 2024-10-19 02:30:58

调整大小方法的 AppEngine API 文档说道:

调整图像大小,缩小或放大到给定的宽度和高度。调整大小变换保留图像的纵横比。如果同时提供了宽度和高度参数,则转换将使用导致较小图像的尺寸。

这听起来正是您想要的。只需指定宽度,高度就会转换为适当的值以保持原始图像的宽高比。

The AppEngine API docs for the resize method say:

Resizes an image, scaling down or up to the given width and height. The resize transform preserves the aspect ratio of the image. If both the width and the height arguments are provided, the transform uses the dimension that results in a smaller image.

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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文