EAN-8 for .NET WinForms
EAN-8 Winforms Generator - Overview
  • EAN-8 bar code image generator for Winforms in .NET project
  • A clear structured and strongly named DLLs
  • Compatible with Window Control Library and Web Control Library in .NET
  • Support Windows application, console application, and class library
  • Compute check digits for EAN-13 automatically
  • Increase the white spaces around the symbol
  • Supported by .NET 2.0 and later versions
EAN-8 - Brief Introduction

The installation of EAN-8 Winforms Generator into Winforms is straightforward. Dynamic EAN-8 could be generated easily using EAN-8 Winforms Generator. EAN-8 Winforms Generator could be used to draw EAN-8 in Windows applications. At the same time, it could be add to Winforms to stream EAN-8 barcode image via Winforms.
EAN-8 Winforms Generator - Generating Sample Code

1. How to generate EAN-8 barcodes with Visual C# .NET


using BusinessRefinery.Barcode;

// construct a linear barcode object

Linear winformsean8 = new Linear();

// set linear barcode symbology to be ean8

winformsean8.Symbology = Symbology.ean8;

// set UPC-A code text to encode

winformsean8.Code = "EAN-8";

//draw barcode and save into image file in gif format

winformsean8.drawBarcode2ImageFile("ean8-in-winformscsharp.gif");


2. How to generate EAN-8 using Visual Basic in .NET


// construct a linear barcode object

Dim winformsean8 As BusinessRefinery.Barcode.Linear

winformsean8 = New BusinessRefinery.Barcode.Linear()

// set linear barcode symbology to be ean8

winformsean8.Symbology = BusinessRefinery.Barcode.Symbology.ean8

// set UPC-A code text to encode

winformsean8.Code = "EAN-8"

//draw barcode and save into image file in gif format

winformsean8.drawBarcode2ImageFile("ean8-in-winformsvb.gif")




Quick Links