- Generate ISBN barcodes in image files and byte stream objects in .NET
- Add ISBN bar codes into windows applications, Crystal Reports, and SSRS
- Create and stream dynamic ISBN Bookland barcodes in ASP.NET web site or web form, MS IIS
- Programmatically add ISBN barcodes using Visual C#, VB.NET, managed C++, etc
- Strong named assemblies for .NET Framework 2.0, 3.0, 3.5, & 4.0
- Automatically add the checksum digit for ISBN linear barcode images
- Allow the rotation of ISBN barcode images with 0, 90, 180, or 270 degrees
KA.Barcode for .NET Suite library SDK allows developers to add barcode image generation and printing capabilities into .NET Framework applications. The ISBN barcode generation functionality included in KA.Barcode for .NET Suite is robust and complete.
Linear ISBN Introduction
ISBN Symbology, short for International Standard Book Number, is used around the world as the identifier of commercial book. Almost every book published after 2007 had followed the usual ISBN procedure, and is marked with a unique ISBN.
ISBN Encodable Character Set
ISBN Data Length
- 12 digits
- A mandatory check digit
- Starting with 978 or 979
3. Copy KeepAutomation.Barcode.Windows.dll to your Winforms project folder; (There is no need to copy .dll to ....
more>
ISBN Generation in .NET Applications
Above all, please download
KA.Barcode for .NET Suite and unzip.
How to Drag & Drop Barcode Control to Generate ISBN
1.
Open your .NET Project with Visual Studio, and right-click "Choose Items..."
2.
Browse and select "KeepAutomation.Barcode.Windows.dll" or "KeepAutomation.Barcode.Web.dll"
3.
Add "BarCodeControl" to Visual Studio "Toolbox"
4.
Drag and drop the "BarCodeControl" from the "Toolbox" onto your forms
5.
Select the barcode on the form, switch to the Properties Window, and set "Symbology" property to "ISBN"
How to Generate ISBN in C#, VB.NET Class Library
Switch to the Visual Studio Solution Explorer window, and add "KeepAutomation.Barcode.Windows.dll" or "KeepAutomation.Barcode.Web.dll" to as reference of the project. Then copy the following C# or VB.NET to where the ISBN is generated.
using KeepAutomation.Barcode.Bean;
BarCode isbn = new BarCode();
isbn.Symbology = KeepAutomation.Barcode.Symbology.ISBN;
isbn.CodeToEncode = "978123456789";
isbn.generateBarcodeToImageFile("c://isbn-csharp.png");
Dim isbn As KeepAutomation.Barcode.Bean.BarCode = New KeepAutomation.Barcode.Bean.BarCode
isbn.Symbology = KeepAutomation.Barcode.Symbology.ISBN
isbn.CodeToEncode = "978123456789"
isbn.generateBarcodeToImageFile("c:/isbn-vbnet.png")
This Barcode Generator control SDK library support generating ....
more>
How to Generate ISBN with Supplement Barcode
Using integrated KA.Barcode for .NET Suite, a two-digit or five-digit supplement barcode can be added to an ISBN, thus more information could be encoded and displayed. The data, height as well as the space between the main and supplement barcode are customizable. To generate ISBN with supplement barcode in .NET, please copy the following code to your project:
Two-digit supplement barcode (ISBNSup2)
using KeepAutomation.Barcode.Bean;
BarCode isbnsup2 = new BarCode();
isbnsup2.Symbology = KeepAutomation.Barcode.Symbology.ISBNSup2;
isbnsup2.CodeToEncode = "978123456789";
isbnsup2.SupplementCode = "12";
isbnsup2.SupplementHeight = 0.8f;
isbnsup2.SupplementSpace = 15;
isbnsup2.generateBarcodeToImageFile("c://isbnsup2-csharp.png");
Dim isbnsup2 As KeepAutomation.Barcode.Bean.BarCode = New KeepAutomation.Barcode.Bean.BarCode
isbnsup2.Symbology = KeepAutomation.Barcode.Symbology.ISBNSup2
isbnsup2.CodeToEncode = "978123456789"
isbnsup2.SupplementCode = "12"
isbnsup2.SupplementHeight = 0.8
isbnsup2.SupplementSpace = 15
isbnsup2.generateBarcodeToImageFile("c:/isbnsup2-vbnet.png")
Five-digit supplement barcode (ISBNSup5)
using KeepAutomation.Barcode.Bean;
BarCode isbnsup5 = new BarCode();
isbnsup5.Symbology = KeepAutomation.Barcode.Symbology.ISBNSup5;
isbnsup5.CodeToEncode = "978123456789";
isbnsup5.SupplementCode = "12345";
isbnsup5.SupplementHeight = 0.8f;
isbnsup5.SupplementSpace = 15;
isbnsup5.generateBarcodeToImageFile("c://isbnsup5-csharp.png");
Dim isbnsup5 As KeepAutomation.Barcode.Bean.BarCode = New KeepAutomation.Barcode.Bean.BarCode
isbnsup5.Symbology = KeepAutomation.Barcode.Symbology.ISBNSup5
isbnsup5.CodeToEncode = "978123456789"
isbnsup5.SupplementCode = "12345"
isbnsup5.SupplementHeight = 0.8
isbnsup5.SupplementSpace = 15
isbnsup5.generateBarcodeToImageFile("c:/isbnsup5-vbnet.png")
Generate ISBN in Microsoft IIS
1.
Copy the "barcode" folder from the unzipped folder to IIS web application folder
2.
Create a virtual directory named "barcode", then link it to the "barcode" folder in web application folder
3.
Testing: Open your web browser, and navigate to "http://localhost/barcode/barcode.aspx? code-to-encode =978123456789&symbology =18&x=1&barcode-width=150" (symboloy: ISBN=18, ISBNSup2=19, ISBNSup5=20)
4.
Adding ISBN to web page: insert the following tag onto your web pages
< img src="http://localhost/barcode/barcode.aspx? code-to-encode =978123456789&symbology =18&x=1&barcode-width=150/">