Skip to content

Instantly share code, notes, and snippets.

View eecn's full-sized avatar

wk eecn

View GitHub Profile
@eecn
eecn / saveToExternalStorage.md
Created September 15, 2022 07:35 — forked from vxhviet/saveToExternalStorage.md
Android saving Bitmap to external storage.

Source: StackOverflow

Question: How do I save Bitmap to extrenal storage in Android?

Answer:

Use this function to save your bitmap in SD card:

public void saveTempBitmap(Bitmap bitmap) {
        if (isExternalStorageWritable()) {