Searched refs:bitmapOptions (Results 1 – 1 of 1) sorted by relevance
1190 final BitmapFactory.Options bitmapOptions = new BitmapFactory.Options(); in withBitmapResolutionValues() local1191 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() local1197 final Optional<?> width = parseOptionalOrZero(bitmapOptions.outWidth); in withBitmapResolutionValues()1198 final Optional<?> height = parseOptionalOrZero(bitmapOptions.outHeight); in withBitmapResolutionValues()