Skip to content

Instantly share code, notes, and snippets.

@Younes-Charfaoui
Last active July 4, 2020 00:28
Show Gist options
  • Save Younes-Charfaoui/827a1fb9156f5b3101e4fa596808e605 to your computer and use it in GitHub Desktop.
Save Younes-Charfaoui/827a1fb9156f5b3101e4fa596808e605 to your computer and use it in GitHub Desktop.
private fun takeImage() {
fotoapparat.takePicture()
.toBitmap()
.whenAvailable { picture ->
scanImageForBarcode(picture!!)
}
}
private fun scanImageForBarcode(picture: Bitmap){
// handle and scan the picture for barcode
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment