QRCoder icon indicating copy to clipboard operation
QRCoder copied to clipboard

QR image is printed without the position finder squares

Open Nasser190 opened this issue 3 years ago • 0 comments

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);

image

Can anyone help me in that issue?

Nasser190 avatar Dec 28 '22 21:12 Nasser190