答案 0 :(得分:1)
我建议您将Blobstore中的Image作为图像服务提供,它会为您的图像提供更好的性能,尺寸等。
请参阅下面的代码。
ImagesService services = ImagesServiceFactory.getImagesService();
ServingUrlOptions serve = ServingUrlOptions.Builder.withBlobKey(blobKey); // Blobkey of the image uploaded to BlobStore.
String url = services.getServingUrl(serve);
您将获得可以轻松放入HTML图像标记的图像的URL。
<img src="url" />
您可以从这里了解AppEngine的图像服务。 GAE Image Services