Skip to content Skip to sidebar Skip to footer

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);

Solution 1:

Size of the thumbnail is determined by the camera capabilities. Camera.Parameters class defines getJpegThumbnailSize() method.


Post a Comment for "What Is Size Of Thumbnail Returned By Action_image_capture Intent"