When I capture a picture from camera I get the jpeg data:
Using java Syntax Highlighting
- public void onPictureTaken(byte[] data, Camera camera)
Parsed in 0.030 seconds, using GeSHi 1.0.8.4
How can I access pixel colors of camera pictures?
Is it possible to load the data array in a Bitmap-Object, because this class provides methods to access pixel (e.g. getPixel())? Or any other ideas?
Thanks.

