We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3883a7b commit 61937f5Copy full SHA for 61937f5
ZXing.Net.MAUI/BarcodeScannerOptions.cs
@@ -17,5 +17,7 @@ public record BarcodeReaderOptions
17
18
public string CharacterSet { get; init; } = "UTF-8";
19
20
+ public bool AssumeGS1 { get; init; }
21
+
22
}
23
ZXing.Net.MAUI/ZXingBarcodeReader.cs
@@ -23,6 +23,7 @@ public BarcodeReaderOptions Options
zxingReader.Options.TryInverted = options.TryInverted;
24
zxingReader.Options.UseCode39ExtendedMode = options.UseCode39ExtendedMode;
25
zxingReader.Options.CharacterSet = options.CharacterSet;
26
+ zxingReader.Options.AssumeGS1 = options.AssumeGS1;
27
28
29
0 commit comments