gpt4 book ai didi

google-app-engine - 在 Google Cloud Storage 中调整图像大小

转载 作者:IT王子 更新时间:2023-10-29 02:17:20 25 4
gpt4 key购买 nike

appengine/image 包可以很好地处理存储在 Blobstore 中的图像。但是,调整存储在 Google Cloud Storage 中的图像大小的好方法是什么?

最佳答案

您可以将相同的图像服务与 Google Cloud Storage 一起使用,尤其是当您使用 Blobstore API 上传图像时。

Java 示例代码:

String fullName = "/gs/" + bucketName + "/" + objectName;
Image picture = ImagesServiceFactory.makeImageFromFilename(fullName);
Transform resize = ImagesServiceFactory.makeResize(maxWidth, maxHeight);
picture = imagesService.applyTransform(resize, picture);

在 Go 中,您可以使用 BlobKeyForFile功能:

BlobKeyForFile returns a BlobKey for a Google Storage file. The filename should be of the form "/gs/bucket_name/object_name".

关于google-app-engine - 在 Google Cloud Storage 中调整图像大小,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/23377736/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com