Closed
Description
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