I'm using the following code:
BitmapFactory.Options options = new BitmapFactory.Options();
options.inSampleSize = 4;
bitmap = BitmapFactory.decodeStream(blob.getBinaryStream(), null, options);
The problem is that this is more time consuming than downloading the data itself! Is there a faster way to convert, or at least a 'BlobView'?