The methods of Camera.Parameters setPreviewFormat() and getPreviewFormat() accept and return an int respectively. The int should correspond to one of those specified by ImageFormat class, but this class was introduced only with api level 8, while the two methods above are there since api level 1. How to know the image format (rgb888? yuv? other?) of the camera preview when using api level 7?

link|improve this question

64% accept rate
feedback

1 Answer

Here are all the existing ImageFormats on Android:

http://developer.android.com/reference/android/graphics/ImageFormat.html

But as you said, this class is available since API Level 8.... Probably those parametres were inside of the Camera class before the API 7.

link|improve this answer
I know the ImageFormat class, but i am unable to understand what was the usage of those methods before api level 8, if one didn't know the meaning of the int returned by getPreviewFormat() and what to pass to setPreviewFormat()... – Marco Masci Jan 25 at 14:39
feedback

Your Answer

 
or
required, but never shown

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