Skip to content

Instantly share code, notes, and snippets.

@tomgibara
Created July 7, 2010 00:49
Show Gist options
  • Save tomgibara/466142 to your computer and use it in GitHub Desktop.
Save tomgibara/466142 to your computer and use it in GitHub Desktop.
try {
FileOutputStream out = new FileOutputStream(file);
try {
bitmap.compress(CompressFormat.PNG, 100, out);
} finally {
try {
out.close();
} catch (IOException e) {
Log.w(DaisyGardenApp.LOG_TAG, "Failed to close file: " + file);
}
}
return ParcelFileDescriptor.open(file, ParcelFileDescriptor.MODE_READ_ONLY);
} finally {
file.delete();
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment