Home | History | Annotate | Download | only in camera

Lines Matching defs:bitmap

23 import android.graphics.Bitmap;
826 Bitmap original = BitmapFactory.decodeByteArray(jpegData, 0, jpegData.length);
846 Bitmap resized = Bitmap.createBitmap(original,xOffset,yOffset,newWidth, newHeight);
852 resized.compress(Bitmap.CompressFormat.JPEG, 90, stream);
1276 bitmap
1296 Bitmap bitmap = CameraUtil.makeBitmap(data, 50 * 1024);
1297 bitmap = CameraUtil.rotate(bitmap, orientation);
1298 Log.v(TAG, "inlined bitmap into capture intent result");
1300 new Intent("inline-data").putExtra("data", bitmap));