I am using Blazor Server with the component and i can read normal barcodes. With the attached barcode the reade won't work. Are there any settings that i can try. The following options i have trieed but it won't work. The Smartphone can read this QR. Thank in advanced.
` private ZXingOptions qrCodeOptions = new ZXingOptions()
{
DecodeAllFormats = false,
TRY_HARDER = true,
Decodeonce = false,
TryInvertColors = false,
Debug = true,
formats = new List<BarcodeFormat>
{
BarcodeFormat.DATA_MATRIX,
BarcodeFormat.QR_CODE,
BarcodeFormat.MAXICODE
}
};`

I am using Blazor Server with the component and i can read normal barcodes. With the attached barcode the reade won't work. Are there any settings that i can try. The following options i have trieed but it won't work. The Smartphone can read this QR. Thank in advanced.
` private ZXingOptions qrCodeOptions = new ZXingOptions()
{
};`