Home | History | Annotate | Download | only in wallpaperpicker

Lines Matching full:bitmap

20 import android.graphics.Bitmap;
78 Bitmap b = Bitmap.createBitmap((int) width, (int) height, Bitmap.Config.ARGB_8888);
89 public Bitmap getTile(int level, int x, int y, Bitmap bitmap) {
91 if (bitmap == null) {
92 bitmap = Bitmap.createBitmap(tileSize, tileSize, Bitmap.Config.ARGB_8888);
94 Canvas c = new Canvas(bitmap);
100 return bitmap;