.NET EAN-8 Generator
Barcode EAN-8 Generation in .NET, C#, ASP.NET, VB.NET
	                
	                An EAN-8 is a barcode and is derived from the longer European Article Number (EAN-13) code. It was introduced for use on small packages where an EAN-13 barcode would be too large; for example on cigarettes, pencils (though it's not commonly used for pencils) and chewing gum packets.
	
	EAN-8 barcodes may be used to encode GTIN-8s which are another set of product identifiers from the GS1 System. It begins with a 2 or 3 digit GS1 prefix (which is assigned to each national GS1 authority) 5 or 4-digit item reference element depending on the length of the GS1 prefix), and a checksum digit.
	                
.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 
	                
	                
	                