Home | History | Annotate | Download | only in media

Lines Matching full:bitmap

22 import android.graphics.Bitmap;
40 protected Bitmap load(RenderView view) {
41 // Load a bitmap from the resource.
42 Bitmap bitmap = null;
45 options.inPreferredConfig = Bitmap.Config.ARGB_8888;
46 bitmap = BitmapFactory.decodeResource(view.getResources(), mResourceId, options);
52 options.inPreferredConfig = Bitmap.Config.ARGB_8888;
53 bitmap = BitmapFactory.decodeStream(inputStream, null, options);
63 return bitmap;