Improve code
This commit is contained in:
parent
4f5ce5711d
commit
efa5c7794d
1 changed files with 12 additions and 10 deletions
|
|
@ -20,17 +20,19 @@ internal class QRCodeAnalyzer(
|
||||||
private val reader by lazy { BarcodeReader() }
|
private val reader by lazy { BarcodeReader() }
|
||||||
|
|
||||||
override fun analyze(image: ImageProxy) {
|
override fun analyze(image: ImageProxy) {
|
||||||
if (image.format in SUPPORTED_IMAGE_FORMATS) {
|
image.use {
|
||||||
try {
|
if (image.format in SUPPORTED_IMAGE_FORMATS) {
|
||||||
val bytes = reader.read(image).firstNotNullOfOrNull { it.bytes }
|
try {
|
||||||
if (bytes != null) {
|
val bytes = reader.read(image).firstNotNullOfOrNull { it.bytes }
|
||||||
Timber.d("QR code scanned!")
|
if (bytes != null) {
|
||||||
onScanQrCode(bytes)
|
Timber.d("QR code scanned!")
|
||||||
|
onScanQrCode(bytes)
|
||||||
|
}
|
||||||
|
} catch (e: Exception) {
|
||||||
|
Timber.w(e, "Error decoding QR code")
|
||||||
}
|
}
|
||||||
} catch (e: Exception) {
|
} else {
|
||||||
Timber.w(e, "Error decoding QR code")
|
Timber.w("Unsupported image format: ${image.format}")
|
||||||
} finally {
|
|
||||||
image.close()
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue