public static interface Camera.PictureCallback
android.hardware.Camera.PictureCallback |
This interface was deprecated in API level 21.
We recommend using the new android.hardware.camera2
API for new applications.
Callback interface used to supply image data from a photo capture.
Public methods |
|
---|---|
abstract void |
onPictureTaken(byte[] data, Camera camera) Called when image data is available after a picture is taken. |
void onPictureTaken (byte[] data, Camera camera)
Called when image data is available after a picture is taken. The format of the data depends on the context of the callback and Camera.Parameters
settings.
Parameters | |
---|---|
data |
byte : a byte array of the picture data |
camera |
Camera : the Camera service object |