February 20, 2010

[SOLVED] Android: Save bitmap to location


try {
     
FileOutputStream out = new FileOutputStream(filename);
     bmp
.compress(Bitmap.CompressFormat.PNG, 90, out);
} catch (Exception e) {
    e
.printStackTrace();
}


Android : Bitmap save to location - Stack Overflow.

No comments:

Post a Comment