Home | History | Annotate | Download | only in imageshow

Lines Matching refs:bitmap

20 import android.graphics.Bitmap;
143 Bitmap bitmap = MasterImage.getImage().getHighresImage();
144 if (bitmap == null) {
145 bitmap = MasterImage.getImage().getFilteredImage();
148 if (bitmap != null) {
149 display(canvas, bitmap);
153 private void display(Canvas canvas, Bitmap bitmap) {
156 float iw = bitmap.getWidth();
157 float ih = bitmap.getHeight();
172 canvas.drawBitmap(bitmap, null, mDestRect, mPaint);