.NET barcode embedding sdk  >  making barcode for C# .NET project in VS  >  inserting code93 barcode to .NET apps with C#


Code 93 C# Printing Component for .NET Applications

write, draw code93 bar code with C# in Visual Studio


Overview

Keepdynamic.com supply Code 93 C# .NET Barcode Generator for the creation of Code 93 barcodes in your C# .NET framework projects.

Related solutions for generating Code 93 image in C#.NET



Features

Technologies of Code 93 C# .NET Creator

C# .NET Code 93 Barcode Creator helps you generate Code 93 barcodes that you probably need in your C# .NET applications. It is entirely built in .NET 2.0 and supports .NET 2.0, 3.0, 3.5, 4.0. Bar coding of Code 93 in C# .NET classes and console applications is easy. Using this C# .NET Barcode Creator, Code 93 barcodes can also be easy to be generated in ASP.NET web projects, Microsoft Windows Forms, SQL Server Reporting Services (SSRS), and Crystal Reports. The full ASCII character set can be encoded into this Code 93 symbol

Barcode images generated by C# .NET Code 93 Barcode Creator

Image formats supported by this Code 93 C#.NET barcode Creator include gif, jpeg, png, bmp, and tiff. Barcodes of Code 93 can be rotated to 0, 90, 180, or 270 degrees based on specific requirements. The image size and other properties of Code 93 may be adjusted to meet the users' specifications. High quality barcodes of Code 93 are supported by this product without any distortion.

Customization of Code 93 Barcodes

Full functional features of C# .NET Code 93 Barcode Creator make the operation of barcode easy and simple. Using this Code 93 creator, the appearance of the human readable characters on Code 93 barcodes can be enabled or disabled. Code 93 contains two check characters which may be enabled and disabled the human-readable checksum character. Code 93 C# .NET Barcode Creator provided the functionality of configuring the colors of foreground and background. It is easy to encode the returns, tabs and other functions into your C# .NET applications. Bearer bar is also easy to be generated for Code 93.

Code 93 Source code and Developer License

Complete C# .NET Code 93 Barcode Creator source code is provided with the purchasing of unlimited developer license. Royalty is free if purchasing a developer license.


Create Code 93 in C#.NET

/*
 Create a new linear barcode object in C#.NET
 and select the barcode symbology as Code 93 from the barcode type list
*/

BarCode barcode = new BarCode();
barcode.SymbologyType = SymbologyType.Code93;

/*
 Assign data message that is encoded into Code93 barcode symbology.

 Encodable data set of Code 93 is as follow,
   All upper case letters: A - Z
   Numeric digits: 0, 1, 2, 3, 4, 5, 6, 7, 8, 9
   Special characters: (-), (.), ($), (/), (+), (%), and space

 Code 93 symbology encodes any length of data characters
*/

barcode.CodeText = "1234567890";

/*
 Enbable the checksum option for Code 93
 so that the barcode engine calculates check digit to Code 93 automatically
*/

barcode.EnableChecksum = true;

//Set the barcode graphic measurements as Pixel for Code 93
barcode.GraphicsUnit = KeepDynamic.Barcode.Generator.GraphicsUnit.Pixel;

//Assign values of bar width and bar height to Code 93 barcode
barcode.X = 2;
barcode.Y = 75;

//Set the margins around the Code 93 symbol
barcode.LeftMargin = 0;
barcode.RightMargin = 0;
barcode.TopMargin = 0;
barcode.BottomMargin = 0;

/*
 Set the resolution of Code 93 image that is drawn to,
 and change the orientation of Code 93 barcode image
*/

barcode.Resolution = 72;
barcode.Rotate = Rotate.Rotate0;

//Set the ratio between wide bars to narrow bars for Code 93
barcode.WideNarrowRatio = 2.0f;

/*
 Display the encoding text of Code 93 barcode and
 set the font style of the characters encoded into Code 93
*/

barcode.DisplayCodeText = true;
barcode.CodeTextFont = new Font("Arial", 11f, FontStyle.Regular);

/*
 Set Code 93 barcode drawing image format to PNG in C# and
 generate Code 93 image in C#
*/

barcode.Format = ImageFormat.Png;
barcode.drawBarcode("C://barcode-code93-csharp.png");