.NET Barcode Generator is a C# barcode generator library to create QR Code, Data Matrix, Code 128, EAN/UPC and other 2d and 1d barcode formats. You can easily generate QR Code and barcodes in the .NET web and Windows applications. .NET Barcode library can be used in C#, VB.NET, ASP.NET Core, Framework, MVC, Windows Forms, WPF, console and desktop applications. Supported barcode formats : * QR Code (Steyled QR Code, GS1 version), Data Matrix (GS1 version), PDF-417 * Code 39, Code 128, GS1-128 * EAN 8, EAN 13, UPC-A, UPC-E * Interleaved 2 of 5, ITF-14 * And others Barcode Output : * Raster images: bitmap (.bmp), gif, png, jpeg/jpg, tiff * Vector images: svg, eps * Stream objects or binary data Quick to Create : QRCode barcode = new QRCode(); barcode.Data = "QR Code"; barcode.drawBarcode("C://output//qrcode.png"); Compatible with : * .NET Standard 2.0 * .NET 8, .NET 7, .NET 6, .NET 5 * .NET Core 3.x, & 2.x * .NET Framework 4.6 Online Documents * How to Developer Guide : https://www.onbarcode.com/tutorial/csharp-barcode-generation.html * Email : support@onbarcode.com
$ dotnet add package OnBarcode.Barcode.GeneratorC# Barcode Generator sdk is a C# barcode generator library to create QR Code, Data Matrix, Code 128, EAN/UPC and other 2d and 1d barcode formats. You can easily generate QR Code and barcodes in the .NET web and Windows applications.
Once installed the package, you can use the following C# code to generate, customize and save barcodes in C# application
QRCode barcode = new QRCode();
barcode.Data = "QR Code";
barcode.drawBarcode("C://output//qrcode.png");