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?
|
feedback
|
|
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. | |||
feedback
|