Home | History | Annotate | Download | only in utils

Lines Matching defs:bitmap

18 import android.graphics.Bitmap;
28 // Bitmap size for album art in media notifications when there are more than 3 playback actions
32 // Bitmap size for album art in media notifications when there are no more than 3 playback actions
36 public static final Bitmap scaleBitmap(int scaleFactor, InputStream is) {
37 // Get the dimensions of the bitmap
40 // Decode the image file into a Bitmap sized to fill the View
44 Bitmap bitmap = BitmapFactory.decodeStream(is, null, bmOptions);
45 return bitmap;
49 // Get the dimensions of the bitmap
60 public static final Bitmap fetchAndRescaleBitmap(String uri, int width, int height)
73 Bitmap bitmap = scaleBitmap(scaleFactor, inputStream);
74 return bitmap;