barcode creation library for .NET  >  vb.net barcode encoding library  >  make isbn barcode with Visual Basic for .NET


VB.NET ISBN Barcode Generating Component

encode, create isbn barcode with vb.net in Visual Studio 2005/2008/2010


Overview

ISBN VB.NET Barcode generator, provided by KeepDynamic.com, is a ISBN creator. It aims to help you easily and simply create ISBN in your .NET projects.

Related barcode solutions for creating ISBN images



Features

ISBN VB.NET Barcode Generator Technologies

Our ISBN Barcode Generator for VB.NET is completely developed in .NET 2.0, and is compatible with the .NET 2.0 and greater development environments. You can easily integrate ISBN barcodes into your VB.NET apps. ISBN is also able to be immediately generated in your VB.NET Classes and console apps. In VB.NET, ASP.NET web projects, and VB.NET Windows Forms software, barcode images can be easily created. This VB.NET Barcode Generator also supports the generation of ISBN barcodes in Reporting Service & Crystal Reports.

ISBN barcode images generated by Barcode Generator for VB.NET

This ISBN VB.NET Barcode Generator supports the image formats such as JPEG, GIF, TIFF, BMP, and PNG. Properties of ISBN, such as the barcode size, are able to be configured according to users' requirements and the image orientation support 0, 90, 180, or 270 degrees. With the thermal printer support, high quality ISBN barcode images are able to be printed on high resolution printers as well as on low resolution printers. White bar increase option increases the blank space between the bars for improving the readability.

Customization of ISBN Barcodes

ISBN VB.NET Barcode generator provides diversified options for easily customizing the ISBN barcodes. Text Options enables or disables the human-readable text in the ISBN VB. NET barcode generator. Graphic Configuration Options configure the colors of the foreground and background. Tilde Functions allow the functions, such as returns, tabs and other ones, to be encoded easily. Bearer bar for ISBN barcode are easy to be generated

ISBN barcode Source code and Developer License

ISBN VB.NET source code is supplied with the purchase of unlimited developer licenses. Royalty will be free with the purchase of a Developer License.

Create ISBN in VB.NET

Imports KeepDynamic.Barcode.Generator
Imports System.Drawing.Imaging


Dim barcode As KeepDynamic.Barcode.Generator.BarCode
barcode = New KeepDynamic.Barcode.Generator.BarCode()

'Set the symbology to ISBN barcode type
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 VB.NET
'Generate ISBN barcode image in VB.NET

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