I have a problem with a file retrieved from a server using XML.
The bitmap (a GIF) is base64 encoded then placed inside the XML as a string. The app gets this string, decodes it to a bitmap, then displays it.
It works fine most of the time, but sometimes the BitmapFactory.decodeByteArray returns null, with no indication of the problem.
I've copied one of the files that fails via XML (it's repeatable!) as a resource, and it works just fine.
bMapArray = Base64Coder.decode(cd.image); // Decode the encoded string
bMap = BitmapFactory.decodeResource(getResources(), R.drawable.fail);
Log.e("config", bMap.getConfig().name());
// shows RGB_565, decodes OK and will display
bMap = BitmapFactory.decodeByteArray(bMapArray, 0, bMapArray.length);
Log.e("config", bMap.getConfig().name());
// Null config and displays OK for some files,
// Fails decodeByteArray for the file matching the one used as a resource and some others
I've spent days trying to fathom out the problem with no success. Does anyone have a bright idea? I'm happy to accept it's a problem with the 64 bit enc/decode process, but with no errors from decodeByteArray I'm not sure what.
Cheers,
Martin.