- Create and produce EAN 13 1D bar code images within VB.NET projects
- Simple integration of EAN-13 linear barcode into Microsoft Visual Studio 2005/2008/2010
- Dynamically stream EAN-13 in ASP.NET web forms, paint images in Windows Forms, and insert in SSRS
- Provide detailed generation guides online, such as .NET barcode generation, ASP.NET barcode generation & Word barcode sample
- Comprehensive tutorials for EAN-13 data encoding in Visual Basic .NET applications
- Support printing, integrating 1D EAN-13 in barcodes with EAN-2 or EAN-5 add-ons
- Generating EAN-13 barcodes image and save locally in BMP/Bitmap, Jpeg, Png, and Tiff image formats
- Store EAN-13 barcode images within VB.NET graphic objects
- .NET WinForms QR Code, C# EAN-8, .NET WinForms Intelligent Mail, PDF417 Word and other linear & 2D barcode control provided
- Compatible with GS1 standard for scannable EAN-13 generation
EAN 13 Barcode maker API for VB.NET is a barcoding function of KA.Barcode Generator for .NET Suite which is compatible with .NET Framework. Users can encode EAN 13 barcodes with outstanding quality in multiple image formats, including GIF, BMP, PNG, JPEG, and TIFF. To achieve efficient EAN-13 barcode creation in VB.NET class, you may need to see the following reference pages with detailed VB.NET examples.
XP; Microsoft Visual Studio 2005; Visual C#.NET. 1D & 2D Barcode Creation in SSRS Using C# Class. ....
Royalty-free, perpetual license with C# source code option. As ....
Visual C#.NET. How to Generate Barcodes in Crystal ....
There are many methods of barcode generation in C#.NET: within barcode setting panel, using C#, VB.NET Class, etc. It is allowed ....
more>
EAN-13 Image Setting in VB.NET Programming
Install EAN-13 Barcode Maker into .NET Projects
1.
2.
Copy KeepAutomation.Barcode.Windows.dll or KeepAutomation.Barcode.Web.dll to your VB.NET project folder
3.
Open Microsoft Visual Studio, choose "Add Reference" in "Project"
4.
Browse KeepAutomation.Barcode.Windows.dll or KeepAutomation.Barcode.Web.dll
5.
Now you will see "KeepAutomation.Barcode.Web" or "KeepAutomation.Barcode.Windows" under your references
Copy those following VB.NET barcode onto you forms to convert string into EAN-13 barcode images:
Dim barcode As KeepAutomation.Barcode.Bean.BarCode = New KeepAutomation.Barcode.Bean.BarCode
barcode.Symbology= KeepAutomation.Barcode.Symbology.EAN13
barcode.CodeToEncode = "012345678901"
barcode.generateBarcodeToImageFile("C://barcode-ean13-vbnet.gif")
How to Print QR Code in VB.NET with Valid Data. Complete VB.NET source code to generate, print QR Code images using Barcode Generator for .NET. ....
more>
Make EAN-13 Barcode with Supplementary /Addon Symbol
KA.Barcode Generator for .NET Suite supports to add supplementary barcode image EAN-2 or EAN-5 for EAN-13 barcodes. Users may add EAN-2 or EAN-5 barcodes with "Symbology" and "SupplementData" properties.
barcode.Symbology= KeepAutomation.Barcode.Symbology.EAN13Sup2
barcode.SupplementCode = "13"
Display EAN-13 Human-readable Text
In some situations, users need to hide human-readable text under EAN-13 barcode symbols. However, they just want to customize and display them. With KA.Barcode Generator for .NET Suite, users may display human-readable text with "DisplayText" enabled and customize them via "TextFont" and "TextMargin".
barcode.DisplayText = true
barcode.TextFont = new Font("Arial", 10f, FontStyle.Regular)
barcode.TextMargin = 6
Print EAN-13 Barcode in Png and Other Image format
KA.Barcode Generator for ASP.NET supports most major image format, like GIF, TIFF, JPEG/JPG, BMP, PNG, to save EAN-13 barcode image in your ASP.NET applications. User may change image format within "ImageFormat". The default is "Gif".
barcode.ImageForamt = ImageFormat.Gif