I have problems converting a input stream from web into bitmap. Problem occurs only when input image type is .BMP (bitmap). In that case: bitmapFactory.decodeStream returns null.
Any hints how to fix this problem or where should I continue my debugging?
Platform: Android (Honeycomb)
URLConnection conn = url.openConnection();
conn.connect();
inputStream = conn.getInputStream();
bufferedInputStream = new BufferedInputStream(inputStream);
bmp = BitmapFactory.decodeStream(bufferedInputStream);
Thank you @Amir for point out the log. Discovered a line:
This seems to be a common problem. Doing a search I found a solution.
My previous code:
Code which is working:
Source