Lines Matching refs:Bitmap
28 import android.graphics.Bitmap;
103 Bitmap mScreenshotBitmap;
371 Bitmap createScreenshot() {
400 Bitmap bitmap = Surface.screenshot((int) dims[0], (int) dims[1]);
402 if (bitmap == null) {
409 Bitmap ss = Bitmap.createBitmap(mDisplayMetrics.widthPixels,
410 mDisplayMetrics.heightPixels, Bitmap.Config.ARGB_8888);
415 c.drawBitmap(bitmap, 0, 0, null);
417 bitmap = ss;
426 int newWidth = bitmap.getWidth();
427 int newHeight = bitmap.getHeight();
428 if (bitmap.getWidth() < bitmap.getHeight()) {
430 newHeight = bitmap.getHeight() - statusBarHeight - navBarHeight;
433 newHeight = bitmap.getHeight() - statusBarHeight;
434 newWidth = bitmap.getWidth() - navBarWidth;
436 bitmap = Bitmap.createBitmap(bitmap, newLeft, newTop, newWidth, newHeight);
438 return bitmap;