QRCoder
QRCoder copied to clipboard
QR image is printed without the position finder squares
Dear All I am using QRCoder C# library with DLL version 1.3.7 NET 4.5, when printing the QR code the QR image is printed without the position finder squares (inner eye) as shown in the below screenshot so the QR will not be readable knowing that if I placed the squares with image editor (i.e. MS Paint) the QR code can be easily recognized I am using the following code QRCodeGenerator qrGenerator = new QRCodeGenerator(); QRCodeGenerator.ECCLevel eccLevel = (QRCodeGenerator.ECCLevel)0; qrCodeData = qrGenerator.CreateQrCode(txt, eccLevel); QRCode qrCode = new QRCode(qrCodeData); QRImage = qrCode.GetGraphic(20, Color.Black, Color.White, null, 100);

Can anyone help me in that issue?