.NET barcode creator  >  vb.net barcode creator  >  generate ean8 for .NET with vb.net


VB.NET EAN-8 Bar Code Generator

create, generate, encode ean8 with vb.net for .NET framework apps in Visual Studio


Overview

EAN-8, a.k.a. European Article Number 8, UPC-8, GTIN-8, GS1-8, EAN/UCC-8, VB.NET Barcode generator, provided by KeepDynamic.com, is an EAN-8 creator. It aims to help you easily and simply create EAN-8 in your .NET projects.

Related barcode solutions for creating EAN-8 barcode



Features

EAN-8 VB.NET Barcode Generator Technologies

Our EAN-8 Barcode Generator for VB.NET is completely developed in .NET 2.0, and is compatible with the .NET 2.0 and greater development environments. You can easily integrate EAN-8 barcodes into your VB.NET apps. EAN-8 is also able to be immediately generated in your VB.NET Classes and console apps. In VB.NET, ASP.NET web projects, and VB.NET Windows Forms software, barcode images can be easily created. This VB.NET Barcode Generator also supports the generation of EAN-8 barcodes in Reporting Service & Crystal Reports.

EAN-8 barcode images generated by Barcode Generator for VB.NET

This EAN-8 VB.NET Barcode Generator supports the image formats such as JPEG, GIF, TIFF, BMP, and PNG. Properties of EAN-8, such as the barcode size, are able to be configured according to users' requirements and the image orientation support 0, 90, 180, or 270 degrees. With the thermal printer support, high quality EAN-8 barcode images are able to be printed on high resolution printers as well as on low resolution printers. White bar increase option increases the blank space between the bars for improving the readability.

Customization of EAN-8 Barcodes

EAN-8 VB.NET Barcode generator provides diversified options for easily customizing the EAN-8 barcodes. Text Options enables or disables the human-readable text in the EAN-8 VB. NET barcode generator. Graphic Configuration Options configure the colors of the foreground and background. Tilde Functions allow the functions, such as returns, tabs and other ones, to be encoded easily. Bearer bar for EAN-8 barcode are easy to be generated

EAN-8 barcode Source code and Developer License

EAN-8 VB.NET source code is supplied with the purchase of unlimited developer licenses. Royalty will be free with the purchase of a Developer License.

Create EAN-8 in VB.NET

Imports KeepDynamic.Barcode.Generator
Imports System.Drawing.Imaging


Dim barcode As KeepDynamic.Barcode.Generator.BarCode
barcode = New KeepDynamic.Barcode.Generator.BarCode()

'Set the barcode type to EAN-8 symbology
barcode.SymbologyType = SymbologyType.EAN8

'Set the encoding data value to EAN-8
'Valid data character set of EAN-8,
' Numeric characters: 0, 1, 2, 3, 4, 5, 6, 7, 8, 9
'EAN-8 barcode encodes a fixed data length of 8 digits including 1 check digit

barcode.CodeText = "1234567"

'Set the checksum as true to EAN-8 symbology
barcode.EnableChecksum = True
'Set the EAN-8 barcode graphic measurements as Pixel
barcode.GraphicsUnit = KeepDynamic.Barcode.Generator.GraphicsUnit.Pixel

'Assign the values of bar width and bar height to EAN-8 barcode
barcode.X = 2
barcode.Y = 75

'Assign values to the margins around the EAN-8 barcode symbology
barcode.LeftMargin = 0
barcode.RightMargin = 0
barcode.TopMargin = 0
barcode.BottomMargin = 0

'Set the resolution of EAN-8
'rotate the EAN-8 barcode image orientation

barcode.Resolution = 72
barcode.Rotate = Rotate.Rotate0

'Display the characters encoded into the EAN-8 barcode symbology
'Set the font style of characters encoded into the EAN-8 barcode

barcode.DisplayCodeText = True
barcode.CodeTextFont = New Font("Arial", 11f, FontStyle.Regular)

'Set output image format of EAN-8 as PNG in VB.NET
'Draw EAN-8 barcode image in VB.NET

barcode.Format = ImageFormat.Png
barcode.drawBarcode("C://barcode-ean8-vbnet.png")