1

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
  • 671
  • 7
  • 23

1 Answers1

3

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
  • 5,377
  • 1
  • 22
  • 43