Created
February 15, 2018 09:33
-
-
Save vorobeij/863bf25d9d0ab022fc067158245fd4a9 to your computer and use it in GitHub Desktop.
save bitmap to gallery
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| private fun saveBitmap(bitmap: Bitmap, | |
| name: String) { | |
| val s = context.packageName | |
| Timber.d("jsp bitmap is saved ") | |
| MediaStore.Images.Media.insertImage(context.contentResolver, bitmap, name, s); | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment