QR Quickstart
IronQR is a C# library for QR code generation and reading. It creates, decodes, and customizes QR codes, with styling options that include logos, colors, spacing, and text.
using IronQr;
using IronSoftware.Drawing;
// Create a QR Code object
QrCode myQr = QrWriter.Write("hello world");
// Save QR Code as a Bitmap
AnyBitmap qrImage = myQr.Save();
// Save QR Code Bitmap as File
qrImage.SaveAs("qr.png");
Imports IronQr
Imports IronSoftware.Drawing
' Create a QR Code object
Private myQr As QrCode = QrWriter.Write("hello world")
' Save QR Code as a Bitmap
Private qrImage As AnyBitmap = myQr.Save()
' Save QR Code Bitmap as File
qrImage.SaveAs("qr.png")
Install-Package IronQR
IronQR is a C# library for QR code generation and reading. It creates, decodes, and customizes QR codes, with styling options that include logos, colors, spacing, and text.