Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I am developing an Android application in 2.2, which uses Camera. Now Can anyone tell me that "Is it possible to programmatically determine the Camera Resolution in Megapixels in Android"

Any Help would be highly appreciable.

share|improve this question

3 Answers

up vote 2 down vote accepted

What does image resolution mean?

Resolution refers to the number of pixels in an image. Resolution is sometimes identified by the width and height of the image as well as the total number of pixels in the image. For example, an image that is 2048 pixels wide and 1536 pixels high (2048X1536) contains (multiply) 3,145,728 pixels (or 3.1 Megapixels). You could call it a 2048X1536 or a 3.1 Megapixel image. As the megapixels in the pickup device in your camera increase so does the possible maximum size image you can produce. This means that a 5 megapixel camera is capable of capturing a larger image than a 3 megapixel camera.

Example: 1936 x 1552 / 1024000 = 3 Mega Pixels

share|improve this answer

You can you this to get the list of supported sizes. getSupportedSizes()

The highest size would give you the camera resoultion in pixels.

EDIT: Just in case you do not know.

Resolution in pixel = width X height

share|improve this answer
Can you elaborate further? – YuDroid Aug 5 '11 at 7:21
show me what you have done in code and then i will help you. – PravinCG Aug 5 '11 at 7:44

if you've got the camera object, try:

android.hardware.Camera.Parameters parameters = camera.getParameters();
android.hardware.Camera.Size size = parameters.getPictureSize();


int height = size.height;
int width = size.width;
share|improve this answer
But these are the picutre width and height. But actually I need the Camera resolution, in MegaPixels, from which I want to process images accordingly. – YuDroid Aug 5 '11 at 7:20
YuDroid, use the answer provided by @wAroXxX, which gives you the height and width of the pictures that the camera will output, then use the equation given by PravinCG "Resolution in pixel = width X height" Which gives you Resolution in Pixels and divide that by 1,024,000 . This will give you your resolution in MegaPixels. So: Megapixels = (width * Height)/1024000; – TChadwick Oct 18 '12 at 15:09

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.