.NET barcode encoder  >  barcode encoding library written in C#  >  generate ISBN barcode with c# .net


ISBN Barcode Generator for C#.NET Framework Project Templates

create, generate ISBN bar codes with c# in Visual Studio 2005/2008/2010


Overview

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

Related solutions for generating ISBN barcode image in C#.NET



Features

Technologies of ISBN C# .NET Creator

C# .NET ISBN Barcode Creator helps you generate ISBN 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 ISBN in C# .NET classes and console applications is easy. Using this C# .NET Barcode Creator ISBN barcodes can also be easy to be generated in ASP.NET web projects, Microsoft Windows Forms, SQL Server Reporting Services (SSRS), and Crystal Reports.

Barcode images generated by C# .NET ISBN Barcode Creator

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

Customization of C#.NET ISBN Barcodes

Full functional features of C# .NET ISBN Barcode Creator make the operation of barcode easy and simple. Using this ISBN creator, the appearance of the human readable characters on ISBN barcodes can be enabled or disabled. ISBN 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 ISBN.

C# .NET ISBN Source code and Developer License

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


Generate ISBN in C#.NET projects

//Create a new barcode object in C#.NET,
//Set the symbology to ISBN barcode type

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

/*
 Set data that is encoded into ISBN barcode symbology.

 Valid data set of ISBN consists of,
   Numeric characters: 0, 1, 2, 3, 4, 5, 6, 7, 8, 9

 ISBN barcode encodes a fixed data length of 13 digits
 inclusive of 1 check digit and three start digits: 978 and 979
*/

barcode.CodeText = "978123456789";

//Set the value of ISBN checksum as true
barcode.EnableChecksum = true;

//Set the ISBN barcode graphic measurements as Pixel
barcode.GraphicsUnit = KeepDynamic.Barcode.Generator.GraphicsUnit.Pixel;

//Set values of bar width and bar height to ISBN barcode
barcode.X = 2;
barcode.Y = 75;

//Set the margin distance around the ISBN barcode symbology
barcode.LeftMargin = 0;
barcode.RightMargin = 0;
barcode.TopMargin = 0;
barcode.BottomMargin = 0;

//Set the resolution of ISBN barcode image that is drawn to,
//Change the ISBN barcode image orientation

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

//Display the data text encoded into the ISBN barcode
//Set the font style of characters encoded into the ISBN barcode

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

//Set ISBN barcode drawing image format to PNG in C#
//Generate ISBN barcode image in C#

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