diff --git a/ZXing.Net.MAUI/BarcodeScannerOptions.cs b/ZXing.Net.MAUI/BarcodeScannerOptions.cs index c20f167..d47a760 100644 --- a/ZXing.Net.MAUI/BarcodeScannerOptions.cs +++ b/ZXing.Net.MAUI/BarcodeScannerOptions.cs @@ -13,5 +13,7 @@ public record BarcodeReaderOptions public bool Multiple { get; init; } - } + public bool UseCode39ExtendedMode { get; init; } + + } } diff --git a/ZXing.Net.MAUI/ZXingBarcodeReader.cs b/ZXing.Net.MAUI/ZXingBarcodeReader.cs index d10cc1d..c751dd2 100644 --- a/ZXing.Net.MAUI/ZXingBarcodeReader.cs +++ b/ZXing.Net.MAUI/ZXingBarcodeReader.cs @@ -23,7 +23,8 @@ public BarcodeReaderOptions Options zxingReader.Options.TryHarder = options.TryHarder; zxingReader.AutoRotate = options.AutoRotate; zxingReader.Options.TryInverted = options.TryInverted; - } + zxingReader.Options.UseCode39ExtendedMode = options.UseCode39ExtendedMode; + } } public BarcodeResult[] Decode(PixelBufferHolder image)