Code 128 Barcode Generation using C#.NET

Add Code 128 barcodes into C#.NET programs with .NET Control DLL
Barcode in C# > Linear > Code 128
Code 128 .NET Barcode Generator Contorl for C# - Benefits
Easy-to-use Barcode Control DLL in .NET
C# Code 128 .NET Generator server control is completely developed by managed code in C#; its included assemblies are strong named and digitally signed; it could be installed easily into .NET projects in C# with Xcopy deployment

.NET Barcode Generator SDK library includes ASP.NET Barcode Generator, C# Barcode Generator, VB.NET Barcode Generator, QR Code Generator .NET, QR Code Generator ASP.NET, QR Code Generator C#, QR Code Generator VB.NET, Code 128 .NET, Code 128 VB.NET, Code 128 ASP.NET, Code 128 C#.
Flexible Code 128 Barcode Generator for C#
C# Code 128 .NET Barcode Generator control is an advance Code 128 barcode control component that generates Code 128 image in C#.NET using Winforms Control Library; barcode image sizing, rotating, coloring and text customizing are supported
Human-Readable Text Customization
Code 128 .NET Generator DLL for C# generates quality Code 128 barcode symbols in C#.NET, including the generation of human-readable text. The font style, font color, and font size of the text could be customized easily with C#.NET
Quality Image Generator in C#.NET
C# Code 128 Barcode Generator SDK draws Code 128 images in C#.NET; support image resolution customization in dpi (dots per inch); capable of Png, Tiff, Gif, Jpeg, and Bitmap image output; generate graphics object on windows forms
Multiple Barcode Types Supported in C#.NET
Code 128 Barcode Generation SDK for C#.NET --- Overview
Code 128 C# .NET Barcode Generator DLL is a powerful barcode-generating .NET component that generates PDF-417 and another 40+ linear & 2D barcodes in Visual C# .NET projects. Free C#.NET sample code is available
Code 128 Introduction
Code 128 is the most popular alphanumeric globally. Comparing with other linear barcodes, Code 128 encodes a relatively larger amount of data in a relatively smaller amount of space. One checksum digit based on a modulo 103 calculation is required in each symbol while this digit could not be seen in the human-readable text.
Code 128 Valid Data to be Encoded:
  • Standard ASCII characters
  • Extended ASCII characters
Creating Code 128 Barcodes in C# .NET
Creating Code 128 Barcodes in Windows Application using C#
  • Download Terrek.ASPNET.zip, save it in local drive, and unzip;
  • Add Terrek.Barcode.DotNET.dll to the C# Winform project reference;
  • Drag and drop a button to the form, and double-click the button;
  • In the Form1.cs, copy C# sample code to the project.
Generate Code 128 Barcodes in ASP.NET using C#
  • Download Terrek ASP.NET barcode trial and unzip;
  • Add Terrek.Barcode.ASPNET.dll to your project. Do not copy the DLL to the bin directory, Visual Studio will do so automatically;
  • Open your Visual Studio in Web Forms and add Terrek.Barcode.ASPNET.dll to your reference in "Solution Explorer";
  • Go to "Barcode" folder in the trial package, copy files "barcode.aspx" and "barcode.aspx.cs", to the project where aspx barcodes are generated;
  • Right click on the aspx name in "Solution Expolrer" and select "View Code";
  • Copy the sample C# code in to the project and run the programm.
Generating Code 128 Barcodes using C# sample code
using Terrek.Barcode;
code128. Symbol = BarcodeSymbol.Code128;
code128.BarcodeData = "Code128";
code128.MeasuringUnit = MeasuringUnit.PIXEL;
code128.BarWidth = 2;
code128.BarHeight =50;
code128.Rotation = Rotation.Degree0;
code128.BarAlign = BarAlign.Center;
code128.DotsPerInch = 96;
code128.BarcodeFormat = System.Drawing.Imaging.ImageFormat.Png;
code128.drawBarcode("C:\\code128.png");