Stay organized with collections
Save and categorize content based on your preferences.
PictureCallback
interface PictureCallback
Callback interface used to supply image data from a photo capture.
Summary
Public methods |
abstract Unit |
Called when image data is available after a picture is taken.
|
Public methods
onPictureTaken
abstract fun onPictureTaken(
data: ByteArray!,
camera: Camera!
): Unit
Deprecated: Deprecated in Java.
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 |
ByteArray!: 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 2025-02-10 UTC.
[[["Easy to understand","easyToUnderstand","thumb-up"],["Solved my problem","solvedMyProblem","thumb-up"],["Other","otherUp","thumb-up"]],[["Missing the information I need","missingTheInformationINeed","thumb-down"],["Too complicated / too many steps","tooComplicatedTooManySteps","thumb-down"],["Out of date","outOfDate","thumb-down"],["Samples / code issue","samplesCodeIssue","thumb-down"],["Other","otherDown","thumb-down"]],["Last updated 2025-02-10 UTC."],[],[],null,["# Camera.PictureCallback\n\nAdded in [API level 1](https://developer.android.com/guide/topics/manifest/uses-sdk-element.html#ApiLevels) \nDeprecated in [API level 21](https://developer.android.com/guide/topics/manifest/uses-sdk-element.html#ApiLevels)\n\nPictureCallback\n===============\n\n*** ** * ** ***\n\nKotlin \\|[Java](/reference/android/hardware/Camera.PictureCallback \"View this page in Java\") \n\n```\ninterface PictureCallback\n```\n\n|----------------------------------------------|\n| [android.hardware.Camera.PictureCallback](#) |\n\n*** ** * ** ***\n\n| **This interface was deprecated in API level 21.**\n|\n| We recommend using the new [android.hardware.camera2](/reference/kotlin/android/hardware/camera2/package-summary) API for new applications.\n\nCallback interface used to supply image data from a photo capture.\n\nSummary\n-------\n\n| Public methods ||\n|---------------------------------------------------------------------------------------|----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|\n| abstract [Unit](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-unit/index.html) | [onPictureTaken](#onPictureTaken(kotlin.ByteArray,%20android.hardware.Camera))`(`data:` `[ByteArray](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-byte-array/index.html)!`, `camera:` `[Camera](/reference/kotlin/android/hardware/Camera)!`)` Called when image data is available after a picture is taken. |\n\nPublic methods\n--------------\n\n### onPictureTaken\n\nAdded in [API level 1](https://developer.android.com/guide/topics/manifest/uses-sdk-element.html#ApiLevels) \n\n```\nabstract fun onPictureTaken(\n data: ByteArray!, \n camera: Camera!\n): Unit\n```\n\n**Deprecated:** *Deprecated in Java.*\n\nCalled 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](/reference/kotlin/android/hardware/Camera.Parameters) settings.\n\n| Parameters ||\n|----------|----------------------------------------------------------------------------------------------------------------------------|\n| `data` | [ByteArray](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-byte-array/index.html)!: a byte array of the picture data |\n| `camera` | [Camera](/reference/kotlin/android/hardware/Camera)!: the Camera service object |"]]