What is size of thumbnail returned by ACTION_IMAGE_CAPTURE intent
问题 I'm using the standard camera intent to take a photo: Intent takePictureIntent = new Intent(MediaStore.ACTION_IMAGE_CAPTURE); startActivityForResult(takePictureIntent, actionCode); And then in onActivityResult () Bundle extras = intent.getExtras(); Bitmap imageBitmap = (Bitmap) extras.get("data"); mImageView.setImageBitmap(imageBitmap); Bitmap is a thumbnail. That's great - I don't need full size images. Before user can take a photo, I display a default thumbnail that they can click and that