KA.Barcode for .NET Suite
Guide for Customizing Code 11 Images in C#.NET
Complete C# source code to generate, print Code 11 simages in different image formats using Barcode for .NET Control
C# Code 11 Generator Overview


Code 11, also named as Code11, USD-8, UDD8, is a common linear barcode widely used for telecommunications.

C# Code 11 Barcode Generator is an easy-to-use .NET barcode component for generating & printing Code 11 barcodes in .NET Winforms and ASP.NET Web Forms applications using C# class. With .NET Barcode Generator Suite you can instantly generate and save Code 11 in a variety of image formats in C# program, including PNG, BMP, GIF, JPEG, TIFF and so on. If you need more details about C#.NET Code 11 barcode, please see: Barcode Data Encoding of Code 11 in C#.NET, Barcode Size Setting of Code 11 in C#.NET.


Other Code 11 Barcode Creation Components

.NET Code 11 Barcode Windows Form Component - Generate Code 11 in .NET Winforms applications

ASP.NET Code 11 Web Form Component - stream Code 11 in ASP.NET Web applications

VB.NET Code 11 Generator - render & insert Code 11 in VB.NET

Code 11 Barcode Component for Word Add-in - draw Code 11 in Microsoft Office Word

Code 11 Barcode Component for Excel Add-in - create Code 11 in Microsoft Office Excel

Java Code 11 Barcode Component - render & print Code 11 in Java

KeepAutomation.com provides other Code 11 solutions including Code 11 barcode fonts, Code 11 for Iphone, Code 11 for Android, etc


How to Generate, Specify Code 11 Barcode Image Using C# Class

Code 11 barcode images can be affected by barcode orientation, barcode resolution, and barcode image formats. KeepAutomation.com C# Code 11 barcode generator provides rich image related options to specify Code 11 Barcode images.

1. Download KeepAutomation.com C# Generator and unzip

2. Copy KeepAutomation.Barcode.Windows.dll or KeepAutomation.Barcode.Web.dll to your C# project folder.

3. Open Microsoft Visual Studio, choose "Add Reference" in "Project"

4. Browse KeepAutomation.Barcode.Windows.dll or KeepAutomation.Barcode.Web.dll

5. Now you will see "KeepAutomation.Barcode.Web" or "KeepAutomation.Barcode.Windows" under your references.

Generating Code 11 barcodes with Specified Orientation

Barcode Orientation is the barcode rotate angle. C# Code 11 generator provides 4 type orientation: 0 degree, 90 degree, 180 degree and 270 degree. using KeepAutomation.Barcode.Bean;

BarCode code11 = new BarCode();

code11.Symbology = KeepAutomation.Barcode.Symbology.Code11;

code11.CodeToEncode = "-123";

code11.Orientation = KeepAutomation.Barcode.Orientation.Degree180;

code11.generateBarcodeToImageFile("../code11_1.gif");



Generating Code 11 barcodes with Specified DPI

Barcode DPI is the barcode resolution in DPI (Dots per Inch).

using KeepAutomation.Barcode.Bean;

BarCode code11 = new BarCode();

code11.Symbology = KeepAutomation.Barcode.Symbology.Code11;

code11.CodeToEncode = "456-";

code11.DPI= 96;

code11.Orientation = KeepAutomation.Barcode.Orientation.Degree0;

code11.generateBarcodeToImageFile("../code11_2.png");



6. Double-click the barcode image object to make further adjustment using VB .NET syntax coding. Dim barcode As KeepAutomation.Barcode ....
A professional barcode generator control SDK library, KA.Barcode for .NET Suite include complete and strong functionality for high-quality QR Code...
Download KA.Barcode for ASP.NET demo version for free and unzip. Free barcode generator tutorial will be provided, and users can create QR Code for...
Also programmatically create GS1 compatible QR Code tags in VB.NET programs. VB.NET QR Code barcode maker is a best QR Code Barcode Generation...
3. Open Microsoft Visual Studio, choose "Add Reference" in "Project". 4. Browse ....
more>

Generating Code 11 barcodes with Different Image Formats

C# Code 11 Generator support multiple image formats, such as GIF, TIFF, JPEG/JPG, BMP, PNG, etc.

using KeepAutomation.Barcode.Bean;

BarCode code11 = new BarCode();

code11.Symbology = KeepAutomation.Barcode.Symbology.Code 11;

code11.CodeToEncode = "78-9";

code11.Orientation = KeepAutomation.Barcode.Orientation.Degree0;

code11.generateBarcodeToImageFile("../code11_3.gif");



You can change "gif" to other image formats like "png", "jpeg", "bmp", and "tiff".