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 EAN-128/GS1-128 in C# Library
GS1-128, formerly EAN-128/UCC-128, was developed to provide a worldwide format and standard for exchanging common data between companies. It is the application barcode standard of the GS1 System using the Code 128 barcode specification.
C#.NET Barcode EAN-128/GS1-128 Generator Control is designed to generate and create EAN-128/GS1-128 barcode in Visual C#.NET applications in an easy way. It enables to generate EAN-128/GS1-128 barcode in C#.NET Windows applications, C#.NET Web forms, C#.NET class and Console applications, etc. User may re-develope this control with provided source code if they buy a developer license.
C#.NET Barcode EAN-128/GS1-128 Generator provides advanced barcode imaging options and barcode customization that allows developers to generate EAN-128/GS1-128 barcode suit their needs by setting barcode code text and appearance related properties like font, color, size, etc.

This document explains how to generate EAN-128/GS1-128 barcode image in C#.NET projects and other specific tutorials of EAN-128/GS1-128 data, image and size setting, please see: encode EAN-128/GS1-128 in C#NET, customize EAN-128/GS1-128 image in C#.NET and control EAN-128/GS1-128 size in C#.NET.
EAN-128/GS1-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)
Easy to UseEasy to integrate EAN-128/GS1-128 barcode generating capabilities into .NET Windows Forms Application, .NET Class and Console Applications
Programming LanguageCompleted run in Visual C#, Visual Basic.NET, Managed C++ and Borland Delphi for .NET
Image & SizeProvides advanced options to customize EAN-128/GS1-128 barcode image, size and human-readable text
High-quality ImageGenerate high-quality EAN-128/GS1-128 barcode image for all printers. No special printers or hardware are required
Check Digit OptionAutomatically add compute Mod 103 check digit for EAN-128/GS1-128 barcodes
EAN-128/GS1-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 EAN-128/GS1-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 EAN-128/GS1-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 EAN-128/GS1-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.EAN128;
barcode.Code = "(01)23456789";
barcode.Resolution = 104;
barcode.Rotate = Rotate.Rotate180;
barcode.Format = ImageFormat.Gif;
barcode.drawBarcode2ImageFile("c:/ean-128-csharp.gif");