Skip to content

Instantly share code, notes, and snippets.

@dcampogiani
Created August 14, 2020 18:04
suspend fun ImageCapture.takePicture(executor: Executor): ImageProxy {
return suspendCoroutine { continuation ->
takePicture(executor, object : ImageCapture.OnImageCapturedCallback() {
override fun onCaptureSuccess(image: ImageProxy) {
continuation.resume(image)
super.onCaptureSuccess(image)
}
override fun onError(exception: ImageCaptureException) {
continuation.resumeWithException(exception)
super.onError(exception)
}
})
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment