我需要使用App Engine BlobStore檢索上傳圖像的高度和寬度。對於發現我用下面的代碼:錯誤:java.lang.UnsupportedOperationException:使用App Engine的BlobStore和圖像API時沒有圖像數據可用
try {
Image im = ImagesServiceFactory.makeImageFromBlob(blobKey);
if (im.getHeight() == ht && im.getWidth() == wd) {
flag = true;
}
} catch (UnsupportedOperationException e) {
}
我可以上傳圖像和生成的BlobKey,但通過的blobKey到makeImageFromBlob()時,它會生成以下錯誤:
java.lang.UnsupportedOperationException: No image data is available
如何解決這個問題或任何其他方式直接從BlobKey查找圖像的高度和寬度。