You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I'm using .Net 4.5 und Nuget version 1.4.1 of QRCoder, and I'm getting an invalid / corrupted
QR-Code for the Data = "A11".
The generated QR-Code has only 20 Lines, instant of 21 lines as the QR-code generated for "A05"
QRCodeGenerator qrGenerator = new QRCodeGenerator();
QRCodeData qrCodeData = qrGenerator.CreateQrCode("A11" , QRCodeGenerator.ECCLevel.H);
AsciiQRCode qrCode = new AsciiQRCode(qrCodeData);
string lF = qrCode.GetGraphic(1, "1", "0", "\n");
Is there any workaround ?
Regards Armin
The text was updated successfully, but these errors were encountered:
Empty lines were falsely removed. (I guess the author initially wanted to remove the whitespace around the QR code. I will add a flag to suppress whitespace in another commit.)
Thank you both for your input! I found and fixed the bug in #339
If you want to test the changes, feel free to use the latest CI-build nuget package (Should be available within 10 minutes.) or wait for the 1.4.2 release on Nuget.org.
Hi,
I'm using .Net 4.5 und Nuget version 1.4.1 of QRCoder, and I'm getting an invalid / corrupted
QR-Code for the Data = "A11".
The generated QR-Code has only 20 Lines, instant of 21 lines as the QR-code generated for "A05"
QRCodeGenerator qrGenerator = new QRCodeGenerator();
QRCodeData qrCodeData = qrGenerator.CreateQrCode("A11" , QRCodeGenerator.ECCLevel.H);
AsciiQRCode qrCode = new AsciiQRCode(qrCodeData);
string lF = qrCode.GetGraphic(1, "1", "0", "\n");
Is there any workaround ?
Regards Armin
The text was updated successfully, but these errors were encountered: