VB.NET EAN-13 Generator Introduction
EAN-13, also known as European Article Number 13, UPC-13, GTIN-13, GS1-13, EAN/UCC-13, is the standard barcode version of European Article Number.
Using VB.NET EAN-13 Generator to create EAN-13 barcodes in VB.NET program is a simple and easy job. VB.NET EAN-13 Generator control is easy to install with a single .NET Barcode generation control. It is easy to generate EAN-13 barcodes in VB.NET class with detailed VB.NET EAN-13 settings document and complete demo for EAN-13 generation in VB.NET provided in this article.
EAN-13 Generators
OnBarcode provides several EAN-13 Generator components and software, including EAN-13 .NET, EAN-13 Generator, EAN-13 Java, EAN-13 C#, EAN-13 ASP.NET.
Common Asked Questions
What is the EAN-13 code?
EAN-13 is a 13-digit barcode, which includes 12 GS1 data digits and 1 check digit. EAN is short for European Article Number,
and now it is renamed as GTIN (Global Trade Item Number). EAN 13 code will be used to uniquely identify retail products worldwide.
In VB.NET class, you can input EAN-13 12 digits data text or whole 13 digits with check sum, the VB.NET barcode generator library will generate and print the EAN13 barcodes through class
In VB.NET class, you can input EAN-13 12 digits data text or whole 13 digits with check sum, the VB.NET barcode generator library will generate and print the EAN13 barcodes through class
EAN13
in Visual Basic .NET class library, console, WinForms, WPF windows applications.
What is the difference between EAN and EAN-13?
EAN barcode includes EAN-13, EAN-8. You can use OnBarcode VB.NET barcode library to encode and print EAN-13, and EAN-8 barcode images easily in VB.NET projects
What is the EAN-13 barcode layout?
The whole 13 digits EAN-13 code is grouped as follows:
- 2 or 3 digits for the number system or the country code
- 5 or 4 digits for the manufacturer code or prefix
- 5 digits for the product code
- 1 digit for the check digit
How to check if the EAN-13 barcode created in VB.NET is valid?
The last digit of EAN-13 is a check digit. It will be used to verify the first 12-digit GS1 data message.
Using VB.NET barcode library,
the generated EAN-13 barcode check digit is calculated and verified by the barcode SDK API.
What is the minimum size for EAN-13?
The GS1 recommended minimum size for an EAN-13 barcode is 30mm in width and 20 mm in height.
You can customize the EAN-13 barcode image with and height through method
setBarcodeWidth and setBarcodeHeight in
VB.NET class.
How do I print high quality EAN-13 barcodes in VB.NET?
To print good quality EAN-13 barcodes in VB.NET projects, you need follow the rules below.
- The EAN-13 barcode image resolution (DPI) is the same or higher than the printer's resolution.
In VB.NET class
com.onbarcode.barcode.EAN13, customize the barcode image resolution through methodsetResolution() - The EAN-13 barcode human readable text is using the legible fonts. The GS1 System recommends use OCR-B font to draw EAN-13 text label.
Here is the sample VB.NET source code to apply fonts:
setTextFont(new Font("OCR-B", Font.PLAIN, 13))
