0

QRCoder: https://github.com/codebude/QRCoder

QRCodeGenerator qrGenerator = new QRCodeGenerator();
QRCodeData qrCodeData = qrGenerator.CreateQrCode("This is QR Code", QRCodeGenerator.ECCLevel.Q);
QRCode qrCode = new QRCode(qrCodeData);
Bitmap qrCodeImage = qrCode.GetGraphic(20);

How to add text below QR code in the above qrCodeImage image object, like the below:

enter image description here

J.W
  • 537
  • 4
  • 20

1 Answers1

2

Your question should be approached as "How do I add text to a Bitmap?", and there are answers for it here: c# write text on bitmap

Slava Knyazev
  • 3,010
  • 1
  • 20
  • 36