Skip to content

Instantly share code, notes, and snippets.

@m-kikuchi777
Last active December 19, 2019 05:12
Show Gist options
  • Save m-kikuchi777/b6863b726a7c99ebb819c8dd6431391f to your computer and use it in GitHub Desktop.
Save m-kikuchi777/b6863b726a7c99ebb819c8dd6431391f to your computer and use it in GitHub Desktop.
Scoped Storage Read with BitmapFactory.Options
val bitmapFactoryOptions = BitmapFactory.Options()
bitmapFactoryOptions.inSampleSize = sampleSize
var bitmap = contentResolver.openFileDescriptor(path, "r")?.use {
BitmapFactory.decodeFileDescriptor(it.fileDescriptor, null, bitmapFactoryOptions)
} ?: return null
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment