• Easily generate, draw, render EAN-8images in C#.NET environment
  • Completely integrated into C#.NET 2.0/3.0/4.0
  • Easy to rotate barcode images to 0, 90, 180, or 270 degree
  • Generate scannable EAN-8, EAN-8+2, EAN-8+5 image according to its specifications Simple to colorize EAN-8 barcode background , foreground, human-readable text
  • Absolutely control EAN-8 barcode resolution to suit you needs
  • Mature and reliable Barcode Generator for C#.NET used world-wide
Setting EAN-8 Barcode Image in C#.NET
Those following properties may influence EAN-8 barcode width: (a), barcode rotation; (b), barcode resolution; (c), image format; (d), supplement data; (e), human-readable text; (f) image color; and (g), bar alignment.

Download BusinessRefinery.com C#.NET EAN-8 and unzip; then add BusinessRefinery.Barcode.Win.dll or BusinessRefinery.Barcode.Web.dll to your .NET project reference; copy those C# sample code onto your Visual Studio:
 
     using BusinessRefinery.Barcode;

     Linear barcode = new Linear();
     barcode.Symbology = Symbology.EAN8;
     barcode.Code = "9876543210";

(a) Barcode rotation


Change EAN-8 barcode rotation using Rotate property in BusinessRefinery.com C#.NET EAN-8.
     barcode.Rotate = Rotate.Rotate0;

(b) Barcode resolution


Manage EAN-8 barcode resolution using Resolution property in BusinessRefinery.com C#.NET EAN-8.
     barcode.Resolutin = 72;

(c) Image Formats


Save the barcode images to most of the popular image formats using drawBarcode2ImageFile property in BusinessRefinery.com C#.NET
     barcode.drawBarcode2ImageFile("C://ean8.gif");

Draw EAN-8 barcode image into C#.NET Graphics, Stream & Bitmap objects.
     barcode.drawBarcode2Stream("Stream object");
     barcode.drawBarcodeOnGraphics("Graphics object");

(d) Supplement Data


Encode EAN-8+2 and EAN-8+5 barcode using SupplementCodeproperty.
barcode.SupplementCode = true;

Completely control over the appearance of the human-readable text in the EAN-8 barcode image using TextFont properties.
     barcode. SupplementSpace = 11; 

(e) Human-readable Text


Display or hide EAN-8 human-readable text using DisplayText property.
     barcode.DisplayText = true;

Completely control over the appearance of the human-readable text in the EAN-8 barcode image using TextFont properties.
     barcode.TextFont = new FontStyle("Arial", Font.PLAIN, 11); 

(f) Image Color


Colorize any part of the EAN-8 barcode image, including default white and black. Change EAN-8 foreground color using ForeColor property.
     barcode.ForeColor = BusinessRefinery.Barcode.Color.Green;

Set EAN-8 background color using BackColor properties.
     barcode.BackColor = BusinessRefinery.Barcode.Color.White;

Print EAN-8 with colorized human-readable text using TextColor properties.
     barcode.TextColor = BusinessRefinery.Barcode.Color.Pink;





Quick Links