EAN 8 Barcode Generator for VB.NET

Generating, printing EAN 8 barcodes in VB.NET programs with VB.NET barcode component

EAN-8 C# Barcode Library SDK is one function of VB.NET Barcode Control Component DLL, which supporting other linear and 2D barcodes generation in VB.NET, such as Generate QR Code in VB.NET class library with sample code, Print Data Matrix using VB class with barcode generator, Encode PDF-417 in VB.NET with valid settings, Integrate UPC in VB.NET with barcode library DLL, Insert Code 39 barcodes using VB coding and source code, Add Code 128 barcodes into VB.NET with coding example.

Besides Barcode Generator for VB.NET class library, Terrek also provides ASP.NET Barcode Generator to create barcodes in IIS, VB.NET, C#.NET, and ASP.NET WEB, Generate Barcodes in Windows Applications with barcode control SDK, Generate barcodes using C# class library, Barcode Generator for Crystal Reports with source code in C# or VB, Barcode Generator for RDLC to create barcodes using C# class or VB.NET class, Barcode Generator for Reporting Service to create barcodes images displayed as png, jpeg formats.



EAN 8 Barcode Generator for VB.NET - Benefits



Easy to Use Easy to install, drag and drop onto your VB.NET Windows Forms and VB.NET ASP.NET web forms

Support Development Environment Create, print EAN 8 barcodes in VB.NET ASP.NET web applications, Microsoft Visual Studio, VB.NET Crystal Reports document, VB.NET class & console applications

Support Programming Language 100% Support Visual Basic.NET, and provide VB.NET source code

Rich Barcode properties Simple to change EAN 8 size by adjusting X, Y dimension, margin, wide to narrow ratio

Simple to customize EAN 8 barcode images with color, resolution and orientation

Easy to enable or disable EAN 8 human-readable text and checksum digit

Support EAN 8 special settings Support to generate EAN 8 supplement 2-digit barcode and EAN 8 supplement 5-digit barcode

Support to specify supplement data with space and height

GS1 Standard Easy to generate GS1 standard compatible EAN 8 barcodes



EAN 8 Barcode Generator for VB.NET --- Overview



Visual Basic .NET EAN 8 Barcode Generator is a one function of .NET barcode generating component, written in Visual Basic.NET, is a mature and flexible barcode generating control to create, print EAN 8 and another 40+ linear & 2D barcodes.

EAN 8 Introduction

Symbology Encode data Barcode Length Barcode Sample Image

EAN 8 0, 1, 2, 3, 4, 5, 6, 7, 8, 9 7 digits+ 1 checksum digit



Creating EAN 8 Barcodes in VB.NET class



Creating EAN 8 Barcodes in VB.NET class

Dim ean8 As Terrek.Barcode.Linear

//EAN 8 encoding set, including EAN8, EAN8_2, EAN8_5

ean8.Type = BarcodeType.EAN8

// EAN 8 valid character set, including numeric data 0-9

ean8.Data = "468457"

// EAN 8 supplement data 2 or 5 digits

ean8.SupData = "98648"

// EAN 8 supplement barcode bar height

ean8.SupHeight = 0.7f

// EAN 8 inter-space between barcode and supplement barcode

ean8.SupSpace = 15

// EAN 8 module width and height, default is 1pixel and 60 pixel respectively

ean8.X = 2

ean8.Y =70

// EAN 8 margin size of left, right, top and bottom

ean8.LeftMargin = 5

ean8.RightMargin = 5

ean8.TopMargin = 5

ean8.BottomMargin = 5

// Show or hide EAN 8 human-readable character

ean8.ShowText = True

// Customize EAN 8 human-readable character with font, color and margin

ean8.TextFont = New Drawing.Font("Arial", 7.5F, Drawing.FontStyle.Bold)

ean8.TextColor = Color.Brown

ean8.TextMargin = 9

// Specify EAN 8 barcode image

ean8.Resolution = 108

ean8.Rotate = Rotate.Rotate90

ean8.Format = Drawing.Imaging.ImageFormat.Tiff()

ean8.draw("...\ean8.tiff");

Drawing & printing barcode to .NET Graphics, Stream & Bitmap objects

Public Sub drawBarcode(ByRef graphics As Graphics)

Public Sub drawBarcode(ByVal filename As String)

Public Function drawBarcode() As Bitmap

Public Sub drawBarcode(ByRef fileStream As Stream)