.NET Barcode

.NET Barcode



.NET Code 2 of 5 Generator

Barcode Code 25 Generation in .NET, C#, ASP.NET, VB.NET

In telecommunication, a two-out-of-five code is an m of n code that provides exactly ten possible combinations, and thus is popular for representing decimal digits using five bits. There are ways to assign weights to each bit such that the set bits sum to the desired value, with an exception for zero.

According to Federal Standard 1037C:

1. each decimal digit is represented by a binary numeral consisting of five bits of which two are of one kind, called "ones," and three are of the other kind, called "zeros", and

2. the usual weights assigned to the bit positions are 0-1-2-3-6. However, in this scheme, zero is encoded as "binary" 01100; strictly speaking the 0-1-2-3-6 previously claimed is just a mnemonic device.


.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