Home
last modified time | relevance | path

Searched refs:bitmapOptions (Results 1 – 1 of 1) sorted by relevance

/packages/providers/MediaProvider/src/com/android/providers/media/scan/
DModernMediaScanner.java1190 final BitmapFactory.Options bitmapOptions = new BitmapFactory.Options(); in withBitmapResolutionValues() local
1191 bitmapOptions.inSampleSize = 1; in withBitmapResolutionValues()
1192 bitmapOptions.inJustDecodeBounds = true; in withBitmapResolutionValues()
1193 bitmapOptions.outWidth = 0; in withBitmapResolutionValues()
1194 bitmapOptions.outHeight = 0; in withBitmapResolutionValues()
1195 BitmapFactory.decodeFile(file.getAbsolutePath(), bitmapOptions); in withBitmapResolutionValues() local
1197 final Optional<?> width = parseOptionalOrZero(bitmapOptions.outWidth); in withBitmapResolutionValues()
1198 final Optional<?> height = parseOptionalOrZero(bitmapOptions.outHeight); in withBitmapResolutionValues()