|
Home >
Barcode Components >
.NET Bar Code Generator Ultimate for .NET, C#, ASP.NET, VB.NET
.NET Barcode Ultimate
.NET Barcode Ultimate package for barcode generation in .NET, C#, ASP.NET, VB.NET
.NET Barcode Ultimate is a .NET Barcode Generation package (which implements all features in
.NET Barcode for ASP.NET and
.NET Barcode for Windows Forms
)
.NET Barcode Ultimate supports generating 30+ 1D (linear) & 2D (matrix) barcode symbology types in various .NET development environment,
including :
- .NET Class (C#, VB.NET, J#)
- .NET Console Applications
- ASP.NET Web Applications
- .NET Windows Forms Applications
- .NET Web Service
|
.NET Barcode Package Overview |
-
Linear Barcodes
-
QR-Code
- QRCode with structured append, UPS encoding and mode 2-6 support.
-
Data Matrix
- Data Matrix with ECC200, ASCII, text, C40 and Base256 encoding, Extended Channel Interpretation and Structured append.
-
PDF-417
- PDF417 with EC levels 1 to 8, text and binary encoding.
-
GS1 DataBar
- GS1 DataBar [formerly Reduced Space Symbology (RSS)]
|
.NET Barcode Generator Features and Benefits |
- .NET 2.0, 3.0, 3.5 and above is supported.
-
Royalty free with Developer License purchased.
-
.NET class libraries (in C#) are provided for integration in .NET applications.
-
High quality images with GIF, PNG, JPEG, & BMP support without any distortion.
-
Automatic checksum digit calculations can be enabled and disabled for many linear symbologies.
-
Orientation may be set to 0, 90, 180, or 270 degrees.
-
Fully customizable barcode sizes. Allow to change barcode X (BarWidth, Y (BarHeight) dimensions, wide to narrow ratio (BarRatio),
barcode image width & height, image left, right, top, bottom margins.
-
Text style options allow the human readable characters to be displayed or hidden.
-
Supplemtns 2 & 5 digits supports for UPC-A, UPC-E, EAN-8, EAN-13, ISBN, ISSN.
-
USPS Intelligent Mail Barcode (Onecode) is supported as well as POSTNET, PLANET, RM4SCC, EAN128.
-
GS1 Package supports GS1-128 (EAN-128), ITF-14, DataBar, Data Matrix, & QR-Code.
-
Bearer bars for ITF-14 may be displayed or hidden.
-
Source code is provided for all .NET Class, Web applications (in C# 2005).
|
.NET Barcode Generator - Download |
|
.NET Barcode Ultimate - License & Price |
- .NET Barcode Ultimate - Linear Barcode - 1 Developer License - USD 599
- .NET Barcode Ultimate - Linear Barcode - 5 Developer License - USD 1699
- .NET Barcode Ultimate - Linear Barcode - Corporate Developer License - USD 2999
- .NET Barcode Ultimate - Linear + 2D Barcode - 1 Developer License - USD 899
- .NET Barcode Ultimate - Linear + 2D Barcode - 5 Developer License - USD 2199
- .NET Barcode Ultimate - Linear + 2D Barcode - Corporate Developer License - USD 3999
|
.NET Barcode Generator - Barcode Generation FAQ |
The following FAQ will instruct you how to generate barcode in various .NET development environment.
Read our .NET Barcode Generation Guide for more details.
1. How to generate barcodes in C# Class?
using BusinessRefinery.Barcode;
// construct a linear barcode object
Linear barcode = new Linear();
// set linear barcode symbolgoy to code-128
barcode.Symbology = Symbology.CODE128;
// set code-128 code text to encode
barcode.Code = "9876543210";
//draw barcode and save into image file in gif format
barcode.drawBarcode("C://code-128-in-csharp.gif");
|
2. How to generate barcodes in VB.NET Class?
// construct a linear barcode object
Dim barcode As BusinessRefinery.Barcode.Linear
barcode = New BusinessRefinery.Barcode.Linear()
// set linear barcode symbolgoy to code-128
barcode.Symbology = BusinessRefinery.Barcode.Symbology.CODE128
// set code-128 code text to encode
barcode.Code = "0123456789"
//draw barcode and save into image file in gif format
barcode.drawBarcode("C://code-128-in-vbnet.gif")
|
3. How to draw barcodes to image files (GIF, JPEG, BMP, PNG, & TIFF)?
using BusinessRefinery.Barcode;
Linear barcode = new Linear();
barcode.Symbology = BarcodeType.CODE128;
barcode.Code = "9876543210";
barcode.drawBarcode("C://code-128-in-csharp.gif");
You can draw other file formats, by change file types to .jpg, .bmp, .png, and .tif.
4. How to draw & print barcodes to .NET objects like Graphics, Stream, Bitmap?
using BusinessRefinery.Barcode;
Linear barcode = new Linear();
barcode.Symbology = BarcodeType.CODE128;
barcode.Code = "9876543210";
barcode.drawBarcode2Stream("Stream object");
Bitmap barcodeInBitmap = barcode.drawBarcode();
barcode.drawBarcodeOnGraphics("Graphics object");
5. How to create barcodes in .NET Windows Application using .NET Barcode Generator Windows Control Library?
-
add BusinessRefinery.Barcode.Win.dll to your .NET Windows Application project reference
-
add .NET Barcode Generator .NET Windows Control Library to .NET Visual Studio Toolbox
6. How to create barcodes in ASP.NET Web Application using ASP.NET Barcode Generator Web Control Library?
-
add BusinessRefinery.Barcode.Web.dll to your ASP.NET project reference
-
add ASP.NET Barcode Generator ASP.NET Web Control Library to .NET Visual Studio Toolbox
.NET Barcode Generator |
C# Barcode Generator |
ASP.NET Barcode Generator |
VB.NET Barcode Generator
|
|