This is a mirror of official site: http://jasper-net.blogspot.com/

Android: Generating an EAN13 Barcode

| Sunday, February 20, 2011
Introduction

The European Article Number, or EAN, is a standard European barcode which is designed to encode the identification of a product and its manufacturer and is a superset of the American standard, UPC. The format of the EAN13 barcode encodes a string of 12 characters followed by a 13th character which acts as the control number and is calculated through a formula based on the first 12 characters.

Nowadays, barcodes are used everywhere. If you earn a living as a programmer, sooner or later the need of support of barcodes in your applications will come up. For example, it may be supermarket bonus system, where user is identified by barcode from his phone to get discount, or such payment systems as Starbucks moble payment network. In this article will be explained how to generate EAN13 barcodes on Android screen.  

The Russian version of this article can be found at  http://plaincodesource.blogspot.com/2011/02/android-ean13.html

EAN13 calculation basics

EAN13 barcode uses  a 12 digits product code, the thirteenth digit is a control number, which is calculated on the basis of first 12 digits. Calculation of control number ( digits numbered from right to left ) looks like this:

P1 = the sum of even digits
P2 = the sum of odd digits
Z = P1 + 3 * P2
R = the number divisible by 10 immediately superior to Z
Control number = R - Z
Next, let's see on EAN13 encoding system:

The first digit is not encoded
Each 6 following digit is encoded according to the first digit
The 6 last digits are converted by the strict rule

Read more: Codeproject

Posted via email from Jasper-net

0 comments: