Home | History | Annotate | Download | only in images

Lines Matching defs:inSampleSize

140             options.inSampleSize = calculateInSampleSize(options, reqWidth, reqHeight);
145 return new ScaledBitmapInfo(uriString, bitmap, options.inSampleSize);
174 // Calculates the largest inSampleSize that, is a power of two and, keeps either width or
212 * @see android.graphics.BitmapFactory.Options#inSampleSize
214 public final int inSampleSize;
220 * @param inSampleSize The sampling size. See {@link
221 * android.graphics.BitmapFactory.Options#inSampleSize}
223 public ScaledBitmapInfo(@NonNull String id, @NonNull Bitmap bitmap, int inSampleSize) {
226 this.inSampleSize = inSampleSize;
234 * @see android.graphics.BitmapFactory.Options#inSampleSize
237 if (inSampleSize <= 1) {
271 + inSampleSize