ANC-Software
Member
Hello everybody,
I'm trying this lib to read some QR CODE but I also need to store the photo used by the lib to process the result.
Is it possibile?
Thanks
-----Example----
I'm trying this lib to read some QR CODE but I also need to store the photo used by the lib to process the result.
Is it possibile?
Thanks
-----Example----
B4X:
Sub zb1_scan_result(scantext As String, scanformat As String)
zb1.SaveToFile( File.DirDefaultExternal, "qrcode.jpg") ' <<<<<<<<<<<<< something like this
zb1.stopScanner
zb1.toggleFlash
If scanformat ="QRCODE" Then
Msgbox(scantext, "QRCODE")
End If
Log("B4A scantext = " & scantext)
Log("B4A scanformat = " & scanformat)
End Sub