BizCode Barcode Generator for .NET Ultimate
The most robust & powerful barcode generating SDK for Microsoft .NET Framework
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 GS1 DataBar in C# Library
GS1 DataBar is a family of linear barcode symbologies used within the GS1 System. It encodes a GTIN-12 or GTIN-13 in a 14-digit data structure. In order to make the GTIN-12 or GTIN-13 a 14-digit data structure, a leading zero or zeros is filled to the left of the GTIN. It can carry more information and identify small goods than the UPC/EAN barcodes.
GS1 DataBar Barcode Control Library for C#.NET is one robust function of barcode generator for .NET Ultimate, which supports multiple barcode types generation and customization in C#.NET projects such as C# Windows Forms, C# ASP.NET, C# class library, C# console applications, C# Crystal Report, C# RDLC local report, etc.
GS1 DataBar barcode settings are easy to be customized with barcode control SDK for C#.NET using C# coding. Free sample codes are provided for easy generation and adjustment. Barcode size, rotation, human-readable text, color, resolution in dpi and other properties are simple to be changed.
GS1 DataBar Generator for C#.NET Features
Encodable Characters Support to encode:
- 0, 1, 2, 3, 4, 5, 6, 7, 8, 9
.NET Technology Strong-named and signed DLL for .NET 2.0, 3.0, 3.5 and 4.0
Easy to Use All barcode types, features and functionalities are built in as a DLL for easy barcode generation
High Quality Image Create GS1 DataBar as images in C#.NET project with multiple image formats such as Gif, Tiff, Bmp, Png or Jpeg.
Barcode Specification Support to generate & create accurate GS1 DataBar barcodes according to GS1 General Specification (Version 8) and conform to ISO/IEC 24724:2006
Property Settings Option 60+ barcode setting options are provided for barcode customization in every aspect
GS1 DataBar 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 GS1 DataBar Generator in C#.NET
  1. Unzip Barcode 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 GS1 DataBar Generator in C#.NET
  1. Unzip Barcode 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 GS1 DataBar Barcode Image Using C# Class in .NET?
Copy those following sample codes to your C#.NET project:
using BusinessRefinery.Barcode;

Linear barcode = new Linear();
barcode.Symbology = Symbology.GS1DataBar;
barcode.Code = "0123456789123";
barcode.Resolution = 104;
barcode.Rotate = Rotate.Rotate180;
barcode.Format = ImageFormat.Gif;
barcode.drawBarcode2ImageFile("c:/Gs1databar-csharp.gif");