0
0
mirror of https://github.com/markusfisch/BinaryEye.git synced 2024-09-19 19:42:18 +02:00

Return Codabar start/stop codes

As requested in #445.

The start/stop codes determine if a barcode is complete or if there
is a continuation code to scan.
This commit is contained in:
Markus Fisch 2024-03-30 12:43:43 +01:00
parent 643a935852
commit 24c7ad0ba4
2 changed files with 2 additions and 0 deletions

View File

@ -449,6 +449,7 @@ class CameraActivity : AppCompatActivity() {
tryRotate = prefs.autoRotate,
tryInvert = true,
tryDownscale = true,
returnCodabarStartEnd = true,
maxNumberOfSymbols = 1
)
var useLocalAverage = false

View File

@ -51,6 +51,7 @@ class PickActivity : AppCompatActivity() {
tryRotate = true,
tryInvert = true,
tryDownscale = true,
returnCodabarStartEnd = true,
maxNumberOfSymbols = 1,
formats = prefs.barcodeFormats.toFormatSet()
)