How can I upload an thumbnail image (blob) at the same time as an Entity into a datastore in google app engine?

你说的曾经没有我的故事 提交于 2019-11-28 14:45:54

Well you can use ImageService API in GAE to serve your images of different sizes and also you can apply various transformations on those images.

I am sharing you some code as well below so you will understand how I am serving the image urls using the stored blobkey.

String blobKeyString = blobKey.getKeyString();   // Returned value of blobkey when upload is done.
ImagesService services = ImagesServiceFactory.getImagesService();
ServingUrlOptions serve = ServingUrlOptions.Builder.withBlobKey(blobKey);
String imageUrl = services.getServingUrl(serve);
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!