在 Amazon Web Services 中调整图像大小

image resizing in Amazon Web Services

我在 AWS 中寻找图像大小调整服务并找到了这个(似乎是最受欢迎的)。

我安装正确

但是我找不到任何关于如何使用它的例子。

github 回购不是很有帮助:

https://github.com/cagataygurturk/image-resizer-service

是否有人对此有经验或我可以使用类似的东西?

非常感谢任何帮助。

此服务的全部意义在于动态调整大小并提供已存在于您的 S3 存储桶中的图像。

想法是您的 Web 客户端随后可以请求特定图像。例如,可以通过对位于 https://xxxxxx.execute-api.us-east-1.amazonaws.com/production/cats/siamese.jpg.

的已部署 API 网关端点进行 API 调用来请求位于 s3://mybucket/cats/siamese.jpg 的图像

当客户端包含宽度和高度查询参数时触发调整大小功能,例如:https://xxxxxx.execute-api.us-east-1.amazonaws.com/production/cats/siamese.jpg?width=960&height=480`

这不是一般用途的“发给我一张图片,我会调整它的大小”这种服务。