Java EAN 128 Barcode Generator

Generate, draw & print EAN 128 in Java applications with Java barcode generation component
Java Barcode Trial Package
Download
Java Barcode Trial Package
EAN 128 Barcode Generator for Java- Benefits
To Encode, Draw 1D Barcode EAN 128 with Barcode Generator for Java

Check Sum Digit

Check sum digit may be automatically calculated with Terrekā€™s EAN 128 generator.

Available Java Client Applications

Easy to generate and draw EAN 128 barcode in Java Class, Swing, Applet, Java Bean, J2SE.

Support Programming Language

100% written in C#.NET, VB.NET, managed C++, and Borland Delphi for .NET

Rich Barcode properties

Easy to customize EAN 128 barcode sizing by adjusting EAN 128 module size
Simple to output high-quality EAN 128 barcode images with customized color, resolution and orientation
Show or hide human-readable EAN 128 code text and checksum digit for EAN 128 barcodes

Support ISO Standard

Compatible with ISO / IEC 16388 (2nd edition 2007-05-15)
Java EAN 128 Barcode Generator --- Overview
Java EAN 128 Generator allows graphic and font configuration options which include paint settings of the foreground and background colors and fonts for human-readable characters.

EAN 128 Introduction

EAN 128 is also called UCC/GS1-128, is an application standard of the GS1 implementation using the Code 128 barcode specification. It is a subset of Code 128 and is widely used in shipping and packaging industries to indentify the encoded information of the container and pallet levels in the supply chain.
Java EAN 128 symbology encodes:
  • all 128 characters of ASCII
  • values 128-255 in accordance with ISO 8859-1. There are referred to as extended ASCII.
Java EAN 128 Generator --- Generating Barcode

Generate EAN 128 in Java class by customizing barcode properties.

// Create Java EAN 128 object
EAN128 barcode = new EAN128 ();
// Set EAN 128 data text to encode
// to encode Application Identifier (AI), add "()" around the AI code, and followed by the AI data
barcode.setData("(00)12341234123");
// Generate EAN 128 & print into Graphics2D object
barcode.drawBarcode("Java Graphics2D object");
// Generate EAN 128 & encode into GIF format
barcode.drawBarcode("C://barcode-ean128.gif");
// Generate EAN 128 & encode into JPEG format
barcode.drawBarcode("C://barcode-ean128.jpg");

Generate & encode EAN 128 to EPS by changing the concerned values.

// Create Java EAN 128 object
EAN 128 barcode = new EAN128 ();
// Set EAN 128 data text to encode
barcode.setData("(00)12341234123");
// Generate EAN 128 & encode into EPS format
barcode.drawBarcode2EPS("C://barcode-ean128.eps");

Generate & encode EAN 128 in html or jsp pages.

Add barcode folder and its contents from demo package to Apache Tomcat.
Start Apache Tomcat, go to http://YourDomain:Port/barcode/barcode?DATA=(00)12341234123&TYPE=EAN128
Add an image tag (img) into your target page. Like following one,

Customize the width and height of generated EAN 128 image

You can choose to set the values of the barcodeWidth and barcodeHeight properties or set EAN 128 (bar module width) and Y (bar module height) values.
(For more EAN 128 properties setting, see EAN 128 properties)
Java EAN 128 Generator --- Setting EAN 128 Properties

EAN 128 Basic Settings