BizCode Barcode Generator for .NET Ultimate
The most robust & powerful barcode generating SDK for Microsoft .NET Framwork
Quick Overviews
  • Mature barcode creating SDK
  • Support .NET 2.0/3.0/4.0
  • 100% developed in C#.NET
  • Dynamic barcodes support
  • User-defined controls provided
How to Generate Code 128 in C# Library
Code 128 is also called ANSI/AIM 128, ANSI/AIM Code 128, USS Code 128, Uniform Symbology Specification Code 128, Code 128 Code Set A, Code 128 Code Set B, Code 128 Code Set C, Code 128A, Code 128B, Code 128C. It is a very effective, high-density symbology which permits the encoding of alphanumeric data.
Code 128 Generator Control for C#.NET is one function of BizCode Generator for .NET Ultimate, which is a powerful and reliable barcode generating component, written in Visual C#, and add barcode generation and printing features in .NET applications and projects. Source code is provided with purchased deveoper license.
Code 128 Generator for C#.NET provides a set of options to optimize the barcode text and appearances. Besides, Code 128 barcodes images can be created JPEG, GIF, TIFF, BMP and PNG image files in System.Drawing.Imaging. Developers are able to change the barcode angles by setting image orientation of 0, 90, 180, 270 degrees.

Code 128 Specification - ISO / IEC 15417 (2nd edition 2007-06-01) is pre-configured so that all Code 128 barcodes are valid and scannable. You can get more specific tutorials here on how to encode Code 128, how manipulate Code 128 barcode image, and how to resize Code 128 barcode.
Code 128 Generator for C#.NET Features
Encodable CharactersSupport to encode:
- Standard ASCII characters 0-127 (default: ISO/IEC 646);
- Extended ASCII characters 128-255 (default: ISO/IEC 8859-1)
ISO barcode SpecificationCode 128 barcode generation in accordance with the latest ISO barcode specification - ISO / IEC 15417 (2nd edition 2007-06-01)
Programming DevelopmentSupport Code 128 generation in .NET Class (C#, VB.NET); .NET Windows Forms Applications and .NET Console Applications
Image & SizeMultiple barcode setting options to customize Code 128 barcode image and size, including module width, image width, color, rotation, resolution, text, etc.
For all printersResolution customizable with DPI setting to print high-quality barcodes with all printers! No special printers or hardware are required
Safe & SecureProvide 100% managed code product created in Visual C# .NET with strong name signatures and signed DLLs
Code 128 Generator for C#.NET Requirements
Windows OS
- Microsoft Windows 7
- Windows Server 2008
- Windows Vista
- Windows Server 2003
- Windows XP
Development Environments
- .NET 2.0/3.0/4.0
- Visual Studio 2005/2008/2010
- C#.NET Windows Forms Application
- C#.NET Class and Console Applications
- C#.NET Web Forms
- C#.NET SSRS and Crystal Report
Install .NET Code 128 Generator in C#.NET
Add Windows Forms Barcode Generating Reference to Your Project
  1. Unzip BizCode Generator for .NET Ultimate package;
  2. Add BusinessRefinery.Barcode.Win.dll to your Winforms project folder;
    (The DLL will be copied to the bin directory automatically)
  3. Then BusinessRefinery.Barcode.Win.dll is added on your .NET Winforms project.
Install .NET Code 128 Generator in C#.NET
Add ASP.NET Barcode Generating Reference to Your Project
  1. Unzip BizCode Generator for .NET Ultimate package;
  2. Add BusinessRefinery.Barcode.Web.dll to you ASP.NET project folder;
    (The DLL will be copied to the bin directory automatically)
  3. Then BusinessRefinery.Barcode.Web.dll is added on your ASP.NET project.
How to Generate Code 128 Barcode Image Using C# Class In .NET?
Copy those following sample code to your C#.NET projects:
using BusinessRefinery.Barcode;

Linear barcode = new Linear();
barcode.Symbology = Symbology.CODE128;
barcode.Code = "0123456789";
barcode.Resolution = 104;
barcode.Rotate = Rotate.Rotate180;
barcode.Format = ImageFormat.Gif;
barcode.drawBarcode2ImageFile("c:/code-128-csharp.gif");