C#. EAN-8 Generator Size Setting Tutorial

sample source code to generate linear EAN-8 images and adjust barcode size in C# .NET


  • Generate, create EAN-8 barcodes in C#.NET applications
  • Completely integrate into Microsoft Visual Studio2005/2008/2010
  • Support to create EAN-8 Supplement Barcode with 2-digit and 5-digit add-on symbol
  • Completely developed in Visual C#.NET and compatible with .NET 2.0/3.0/3.5 and advanced version
  • Generate EAN-8 barcodes compatible with the latest EAN-8 specification in GS1 System
  • Easy to control, modify EAN-8 barcode using 50+ barcode settings provided
  • Light-weight, user-friendly EAN-8 barcode component used world-widely
  • Tutorial for EAN-8 Image Setting in Visual C#.NET
  • Tutorial for EAN-8 Data Encoding in Visual C#.NET

EAN-8, also known as European Article Number 8, UPC-8, GTIN-8, GS1-8, EAN/UCC-8, is the short barcode version of EAN-13 barcode.




How to generate, print barcode using .NET, Java sdk library control with example project source code free download:
 

EAN-8 Structure



EAN-8 Image Width Related Settings

W: the width of EAN-8 barcode image, including quiet zones. Please see BarCodeWidth.

X: the width of a module bar. Please see X.

Supplement Space: the space between the barcode and the supplement. Please see Supplement Space

C: the number of EAN-8 encoded data characters, including the check digit; C = 6.

Q: the width of the quiet zone. Please see Left & Right Margin.

EAN-8 Image Height Related Settings

H: the barcode height of EAN-8. Please see BarCodeHeight.

Y: the height of a module bar. Please see Y.

Supplement Height: the height of the bar module. Please see Supplement Height.

Top & Bottom Margin: the height of the top & bottom margin. Please see Top & Bottom Margin.

Text Margin: the space between image bar and text. Please see Text Margin.

Text Font: the font style of human-readable text. Please see Text Font.

 

Setting EAN-8 Barcode Size in C#

C# EAN-8 barcode provides a set of barcode size settings to specify you EAN-8 barcodes. Please download C# barcode component and install, copy those following code to your Visual Studio:

Linear barcode = new Linear();

barcode.Type = BarcodeType.EAN8;

barcode.Data = "1234567";

Modify your EAN-8 barcodes by setting those following properties:

UOM

UOM is short for Unit of Measure, which is the unit of measure for all size related settings in the library. C# EAN-8 barcode provides 3 options: Pixel, Cm, and Inch. The default is Pixel.

barcode.UOM = UnitOfMeasure.PIXEL;

Supplement Space

SupplementSpace is the space between the EAN-8 barcodes and supplemental data. The default is 15 (float).

barcode.SupplementSpace = 19;

Supplement Height

SupplementHeight is the height of the supplement data bar module. It is the N percent of Y (module height of EAN-8 barcode bar). The default is 0.8f (float).

barcode.SupplementSpace = 0.5f;

Barcode Width & Height

BarcodeWidth is the EAN-8 barcode image width. The default in C# EAN-8 barcode is 0 (float).

BarcodeHeight is the EAN-8 barcode image height. The default in C# EAN-8 barcode is 0 (float).

barcode.BarcodeWidth = 0;

barcode.BarcodeHeight = 0;

Notice: if your setting is smaller than the barcode required minimum width and height, the library will automatically reset to barcode minimum width. Or you may enable AutoResize to automatically resize your EAN-8 barcode image.

Barcode Margin

BarcodeMargin is the white zone around the EAN-8 symbol. C# EAN-8 barcode provides 4 options: Left Margin, Right Margin, Top Margin and Bottom Margin. The default of these four margins are 0 (float).

barcode.TopMargin = 3;

barcode.BottomMargin = 3;

barcode.LeftMargin = 1;

barcode.RightMargin = 1;

X & Y

X is the width of barcode bar module (narrow bar). The default in C# EAN-8 barcode is 1 (float).

Y is the height of barcode bar module. The default in C# EAN-8 barcode is 60 (float).

barcode.X = 2;

barcode.Y = 80;

Text Margin & Font

TextMargin is the space between barcode and barcode data text. The default in C# EAN-8 barcode is 6 (float).

TextFont is the font style of human-readable text. The default in C# EAN-8 barcode is new Font ("Arial", 9f, FontStyle.Regular).

barcode.TextMargin = 9;

barcode.TextFont = new Font("Arial", 20f, FontStyle.Regular);







OnBarcode is a market-leading provider of barcode imaging generator, reader controls and components for ASP.NET, Windows Forms, WPF, as well Java, Android, iOS (iPhone, iPad) across all major enterprise development platforms. We provides comprehensive tutorials and how-tos for various linear, 2d barcode information, such as C# in ASP.NET, C# .NET, C# Barcode Encoding, C# Barcode Image, VB.NET in ASP.NET, VB.NET Winforms, VB.NET Barcode Encoding. OnBarcode barcode products are supported by RasterEdge ASP.NET Document Viewer, which supports ASP.NET PDF Viewer, ASP.NET MVC Document Viewer, ASP.NET PDF Editor, MVC PDF Viewer. And provide high quality C# Convert PDF to Tiff, C# Convert PDF to Word, C# Convert PDF to HTML, C# Convert PDF to Jpeg images, and their easy and simple documents, like C# PDF SDK, C# extract text from PDF, C# Compress PDF, Print PDF in C# and C# extract image from PDF.
Terms of Use | Privacy Policy
Copyright © OnBarcode.com . All rights reserved.