我的 GAE 实例提供存储在 Google 数据存储中的图像:
def serveAvatarByName(request,username):
entity_list = Entity.gql("WHERE username = :1", username)
entity = entity_list.get()
if entity:
image_data = entity.image
response = HttpResponse(image_data)
response['Content-Type'] = entity.content_type
else:
image_data = open("static/img/anonymous.png", "rb").read()
response = HttpResponse(image_data)
response['Content-Type'] = 'image/png'
response['Accept-Ranges'] = 'bytes'
response['Cache-Control'] = 'max-age=86400'
return response
我的图像 URI 通常如下所示:
http://my-app.appspot.com/serve_avatar/user1.png
我的 Android 客户端使用出色的 Sergey Tarasevich 的通用图像加载器获取这些图像,配置如下:
DisplayImageOptions defaultOptions = new DisplayImageOptions.Builder()
.cacheInMemory()
.cacheOnDisc()
.build();
ImageLoaderConfiguration config = new ImageLoaderConfiguration
.Builder(getApplicationContext())
.defaultDisplayImageOptions(defaultOptions).build();
ImageLoader.getInstance().init(config);
并检索它们:
String imageUri1 = "http://my-app.appspot.com/serve_avatar/user1.png";
//String imageUri2 = "http://xpda.com/junkmail/junk207/jpgcompressionb1.png";
ImageLoader.getInstance().displayImage(imageUri1, imageView);
第一个图像 (imageUri1) 是存储在我的 Google 数据存储实例中的 PNG,并且在指向 imageUri1 的浏览器中正确显示,但 UIL 失败,在日志中显示以下消息:
03-28 10:41:37.093: D/skia(25780): --- SkImageDecoder::Factory returned null
如果我实现 onLoadingFailed 方法并打印“failReason”,我会得到“IO_ERROR”,但没有别的。
如果用户还没有上传头像图片,则会提供默认图片 (anonymous.png)。那也不行。
请注意,当访问第二个图像(imageUri2,一个 png 文件)时,UIL 可以正常工作。
标题如下所示:
imageUri1 - http://my-app.appspot.com/serve_avatar/user1.png:
HTTP request status: 200 (OK)
Date Thu, 28 Mar 2013 18:05:46 GMT
Cache-Control max-age=86400
Server Google Frontend
Accept-Ranges bytes
Content-Length 41686
Vary Cookie
Content-Type image/png
imageUri2 - http://xpda.com/junkmail/junk207/jpgcompressionb1.PNG:
HTTP request status: 200 (OK)
Date Thu, 28 Mar 2013 14:14:58 GMT
ETag "5de35c2e5eeca1:0"
Last-Modified Sat, 08 May 2010 19:36:30 GMT
Server Microsoft-IIS/7.0
X-Powered-By ASP.NET
Content-Type image/png
Cache-Control max-age=86400
Accept-Ranges bytes
Content-Length 535279
知道有什么问题吗?