The GS1 DataBar (formerly RSS) family consists of the following versions:
- GS1 DataBar-14
- GS1 DataBar-14 Truncated
- GS1 DataBar-14 Stacked
- GS1 DataBar-14 Stacked Omnidirectional
- GS1 DataBar Limited (formerly RSS Limited)
- GS1 DataBar Expanded (formerly RSS Expanded)
- GS1 DataBar Expanded Stacked (formerly RSS Expanded Stacked)
.NET DataBar Generator - Valid Data Scope
How to generate barcode in .NET class?
In C#
Linear barcode = new Linear();
barcode.Type = BarcodeType.CODE39;
barcode.Data = "0123456789";
barcode.drawBarcode("C://code39.gif");
In VB.NET
Dim barcode As OnBarcode.Barcode.Linear
barcode = New OnBarcode.Barcode.Linear()
barcode.Type = OnBarcode.Barcode.BarcodeType.CODE39
barcode.Data = "0123456789"
barcode.drawBarcode("C://code39-in-vbnet.gif")
How to create barcode image in ASP.NET aspx or html pages without ASP.NET Barcode Controller?
- Under demo package, copy barcode folder and its contents to your IIS, and create a new virtual directory.
- Restart IIS, navigate to http://YourDomain:Port/barcode/linear.aspx?DATA=0123456789&TYPE=4
- To create barcode image in html or aspx pages, you can insert a image tag (img) into your page.
For example,
<img src="http://YourDomain:Port/barcode/linear.aspx?DATA=0123456789&TYPE=4" />
How to print barcode into image file?
In C#
Linear barcode = new Linear();
barcode.Type = BarcodeType.CODE39;
barcode.Data = "0123456789";
barcode.drawBarcode("C://code39.gif");
In VB.NET
Dim barcode As OnBarcode.Barcode.Linear
barcode = New OnBarcode.Barcode.Linear()
barcode.Type = OnBarcode.Barcode.BarcodeType.CODE39
barcode.Data = "0123456789"
barcode.drawBarcode("C://code39-in-vbnet.gif")
In Visual Studio C# and VB.NET, how to draw barcode to the memory?
Using C#, please call one of the following methods to draw barcode in the memory
public void drawBarcode(Graphics graphics);
public void drawBarcode(string filename);
public Bitmap drawBarcode();
public void drawBarcode(Stream fileStream);
Using VB.NET, please call one of the following methods to draw barcode in the memory
Public Sub drawBarcode(ByRef graphics As Graphics)
Public Sub drawBarcode(ByVal filename As String)
Public Function drawBarcode() As Bitmap
Public Sub drawBarcode(ByRef fileStream As Stream)
How to create & print barcode using .NET Barcode WinForms Controller?
-
Add OnBarcode.Barcode.WinForms.dll to .net project reference
-
Add .NET Barcode to .NET Visual Studio Toolbox
-
Right click .NET Visual Studio Toolbox, select menu Choose Items...
-
In "Choose Toolbox Items" form, click button "Browse...", and select dll OnBarcode.Barcode.WinForms.dll
-
After selection, you will find four items under "Components" section:
LinearWinForm, DataMatrixWinForm, PDF417WinForm, and QRCodeWinForm.
How to create & print barcode using ASP.NET Barcode Web Form Controller?
-
Add OnBarcode.Barcode.ASPNET.dll to asp.net project reference
-
Add .NET Barcode to .NET Visual Studio Toolbox
-
Right click .NET Visual Studio Toolbox, select menu Choose Items...
-
In "Choose Toolbox Items" form, click button "Browse...", and select dll OnBarcode.Barcode.ASPNET.dll
-
After selection, you will find four items under "Components" section:
LinearWebForm, DataMatrixWebForm, PDF417WebForm, and QRCodeWebForm.
.NET DataBar Generator - Barcode Properties
All .NET Barcode Generator Supporting Bar Code Types
1D / Linear Barcodes
- Codabar
- Code 11
- Code 39
- Extended Code 39
- Code 93
- Code 128
- UCC/EAN128 (GS1 128)
- Interleaved 2 of 5
- Code 2 of 5 (Industrial 2 of 5)
- ITF14
- UPC-A, Supplement 2, 5
- UPC-E, Supplement 2, 5
- EAN-8, Supplement 2, 5
- EAN-13, Supplement 2, 5
- ISBN, Supplement 2, 5
- ISSN, Supplement 2, 5
- MSI Plessey
- POSTNET
- PLANET
- USPS Intelligent Mail Barcode (OneCode)
- Identcode
- Leitcode
- RM4SCC
|
|