Skip to content

Instantly share code, notes, and snippets.

@vorobeij
Created February 15, 2018 09:33
Show Gist options
  • Select an option

  • Save vorobeij/863bf25d9d0ab022fc067158245fd4a9 to your computer and use it in GitHub Desktop.

Select an option

Save vorobeij/863bf25d9d0ab022fc067158245fd4a9 to your computer and use it in GitHub Desktop.
save bitmap to gallery
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