C#. UPC-E Generator Size Setting Tutorial
sample source code to generate linear UPC-E images and adjust barcode size in C# .NET
- Set and control UPC-E Barcode Size in .NET Applications Using Visual C#
- Generate UPC-E barcodes in C#.NET Winforms, ASP.NET web forms, Crystal Reports and SSRS for C#.NET
- Create UPC-E barcodes in C#.NET class & console applications
- Support GS1 system specification for making UPC-E barcodes
- Provide 100% C#.NET source code and strong named assemblies
- Automatically add checksum digit for UPC-E barcodes
- Support UPC-E supplemental 2-digit and 5-digit to add on
- Easy to control, modify UPC-E barcode using 50+ barcode settings provided
- Mature, reliable UPC-E generating SDK in C#.NET Framework
- Samples for UPC-E Image Setting in Visual C#.NET
- Samples for UPC-E Data Encoding in Visual C#.NET
UPC-E, also known as Universal Product Code version E, GTIN-12 with lead 0, GS1-12, UCC-12, is the short form representation of a UPC number.
How to generate, print barcode using .NET, Java sdk library control with example project source code free download:
UPC-E Structure
UPC-E Image Width Related Settings
W: the width of UPC-E 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 UPC-E encoded data characters, including the check digit; C = 6.
Q: the width of the quiet zone; Q ≥7X; Q (L) = 9X, Q (R) = 7X Please see Left & Right Margin.
UPC-E Image Height Related Settings
H: the barcode height of UPC-E. 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 UPC-E Barcode Size in C#
C# UPC-E barcode provides a set of barcode size settings to specify you UPC-E barcodes. Please download C# barcode component and install, copy those following code to your Visual Studio:
Linear barcode = new Linear();
barcode.Type = BarcodeType.UPCE;
barcode.Data = "123456";
Modify your UPC-E 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# UPC-E barcode provides 3 options: Pixel, Cm, and Inch. The default is Pixel.
barcode.UOM = UnitOfMeasure.PIXEL;
Supplement Space
SupplementSpace is the space between the UPC-E 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 UPC-E barcode bar). The default is 0.8f (float).
barcode.SupplementSpace = 0.5f;
Barcode Width & Height
BarcodeWidth is the UPC-E barcode image width. The default in C# UPC-E barcode is 0 (float).
BarcodeHeight is the UPC-E barcode image height. The default in C# UPC-E 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 UPC-E barcode image.
Barcode Margin
BarcodeMargin is the white zone around the UPC-E symbol. C# UPC-E 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# UPC-E barcode is 1 (float).
Y is the height of barcode bar module. The default in C# UPC-E 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# UPC-E barcode is 6 (float).
TextFont is the font style of human-readable text. The default in C# UPC-E barcode is new Font ("Arial", 9f, FontStyle.Regular).
barcode.TextMargin = 9;
barcode.TextFont = new Font("Arial", 20f, FontStyle.Regular);