Lines Matching full:bitmap
28 import android.graphics.Bitmap;
63 private Bitmap.CompressFormat mOutputFormat =
64 Bitmap.CompressFormat.JPEG; // only used with mSaveUri
84 private Bitmap mBitmap;
115 mOutputFormat = Bitmap.CompressFormat.valueOf(
121 mBitmap = (Bitmap) extras.getParcelable("data");
141 // TODO when saving the resulting bitmap use the
185 final Bitmap b = (mImage != null)
215 // bitmap doesn't have to be read into memory
223 Bitmap croppedImage;
230 croppedImage = Bitmap.createBitmap(mOutputX, mOutputY,
231 Bitmap.Config.RGB_565);
246 // Draw the cropped bitmap in the center
249 // Release bitmap memory as soon as possible
260 croppedImage = Bitmap.createBitmap(width, height,
262 ? Bitmap.Config.ARGB_8888
263 : Bitmap.Config.RGB_565);
269 // Release bitmap memory as soon as possible
308 final Bitmap b = croppedImage;
322 private void saveOutput(Bitmap croppedImage) {
392 final Bitmap b = croppedImage;
499 private Bitmap prepareBitmap() {
510 Bitmap faceBitmap = Bitmap.createBitmap(mBitmap, 0, 0, mBitmap
517 Bitmap faceBitmap = prepareBitmap();