mirror of
https://github.com/SimpleMobileTools/Simple-Camera.git
synced 2025-04-06 03:31:06 +02:00
close image after capturing as Bitmap
This commit is contained in:
parent
2627638a76
commit
315f8f559c
@ -441,14 +441,20 @@ class CameraXPreview(
|
|||||||
if (mediaOutput is MediaOutput.BitmapOutput) {
|
if (mediaOutput is MediaOutput.BitmapOutput) {
|
||||||
imageCapture.takePicture(mainExecutor, object : OnImageCapturedCallback() {
|
imageCapture.takePicture(mainExecutor, object : OnImageCapturedCallback() {
|
||||||
override fun onCaptureSuccess(image: ImageProxy) {
|
override fun onCaptureSuccess(image: ImageProxy) {
|
||||||
listener.toggleBottomButtons(false)
|
ensureBackgroundThread {
|
||||||
|
image.use {
|
||||||
val bitmap = BitmapUtils.makeBitmap(image.toJpegByteArray())
|
val bitmap = BitmapUtils.makeBitmap(image.toJpegByteArray())
|
||||||
|
activity.runOnUiThread {
|
||||||
|
listener.toggleBottomButtons(false)
|
||||||
if (bitmap != null) {
|
if (bitmap != null) {
|
||||||
listener.onImageCaptured(bitmap)
|
listener.onImageCaptured(bitmap)
|
||||||
} else {
|
} else {
|
||||||
cameraErrorHandler.handleImageCaptureError(ERROR_CAPTURE_FAILED)
|
cameraErrorHandler.handleImageCaptureError(ERROR_CAPTURE_FAILED)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
override fun onError(exception: ImageCaptureException) {
|
override fun onError(exception: ImageCaptureException) {
|
||||||
handleImageCaptureError(exception)
|
handleImageCaptureError(exception)
|
||||||
|
Loading…
x
Reference in New Issue
Block a user