Home | History | Annotate | Download | only in helper

Lines Matching refs:bmp

145     public int getBitmapWidth(Bitmap bmp)
147 return bmp.getWidth();
150 public int getBitmapHeight(Bitmap bmp)
152 return bmp.getHeight();
155 public void getBitmapPixels(Bitmap bmp, int[] pixels)
157 int w = bmp.getWidth();
158 int h = bmp.getHeight();
159 bmp.getPixels(pixels, 0, w, 0, 0, w, h);
162 public void closeBitmap(Bitmap bmp)
164 bmp.recycle();