.NET Barcode

.NET Barcode



.NET EAN-13 Generator

Barcode EAN-13 Generation in .NET, C#, ASP.NET, VB.NET

An EAN-13 barcode (originally European Article Number) is a barcoding standard which is a superset of the original 12-digit Universal Product Code (UPC) system developed in the United States.[1] The EAN-13 barcode is defined by the standards organisation GS1. The numbers encoded in EAN-13 bar codes are product identification numbers which are called Japanese Article Number (JAN) in Japan. All the numbers encoded in UPC and EAN barcodes are known as Global Trade Item Numbers (GTIN), and they can be encoded in other GS1 barcodes.

The EAN-13 barcodes are used worldwide for marking products often sold at retail point of sale. The less commonly used EAN-8 barcodes are used also for marking retail goods; however, they are usually reserved for smaller items, for example confectionery.


.NET Barcode Supporting Types

Data Matrix, PDF-417, QR-Code

Codabar, Code 2 of 5, Code 11, Code 39

Code 93, Code 128, EAN 8, EAN 13

EAN 128, Identcode, Interleaved 2 of 5, Leitcode

ISBN, ISSN, ITF14, MSI Plessey

Onecode, Planet, Postnet, RM4SCC

UPC-A, UPC-E



In .NET Barcode Generator - How to create barcodes in C# Class?


        Code39 barcode = new Code39();
        barcode.Data("456456456"); 
        barcode.createBarcode("C://csharp-barcode-code-39.png"); 



In .NET Barcode Generator - How to create barcodes in VB.NET class?


        Dim barcode As Avapose.Barcode.Linear
        barcode = New Avapose.Barcode.Linear()
        barcode.Type = Avapose.Barcode.LinearType.CODE128
        barcode.Data = "456456456"
        barcode.createBarcode("C://barcode-code39-vbnet.gif")



In C#, VB.NET Barcode Generator - How to draw barcodes to .NET Bitmap & Graphics objects?


        Dim barcode As Avapose.Barcode.Linear
        barcode = New Avapose.Barcode.Linear()
        barcode.Type = Avapose.Barcode.LinearType.CODE128
        barcode.Data = "456456456"
        barcode.createBarcode("your VB.NET Bitmap & Graphics object")



In .NET Barcode Generator - How to draw & encode barcodes into GIF, JPEG, PNG & BMP images?


        Code39 barcode = new Code39();
        barcode.Data("456456456"); 
        barcode.createBarcode("C://csharp-barcode-code-39.png");  // you can change to .png, .jpg, .bmp