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.

Summary

Public methods

abstract void onPictureTaken(byte[] data, Camera camera)

Called when image data is available after a picture is taken.

Public methods

onPictureTaken

public abstract 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

Content and code samples on this page are subject to the licenses described in the Content License. Java and OpenJDK are trademarks or registered trademarks of Oracle and/or its affiliates.

Last updated 2026-02-26 UTC.