1
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 it takes longer than downloading the data itself! Is there any faster way to convert , or at least a 'Blobview'' ?