The emulator works great. What part of the code did you use to store the bitmap as png?
The following works fine in the emulator:
Bitmap bitmap = createYourBitmap(); OutputStream stream = new FileOutputStream("/sdcard/test.png"); /* Write bitmap to file using JPEG or PNG and 80% quality hint for JPEG. */ bitmap.compress(CompressFormat.PNG, 80, stream); stream.close();
Phyrum tea
source share