EAN 14

DynamicBarcode Creator supports EAN 14 through the Ean14 class. The EAN 14 barcode encodes digits from zero to nine and is used for traded goods. The barcode is based on GS1-128 with an AI (Application Identifier) value of (01). Users only specify the barcode value and not the AI number when specifying the barcode digits. DynamicBarcode Creator automatically adds the AI number. The following example illustrates.

Ean14 barcode = new Ean14("1234567890123");
barcode.Draw(pngFilePath, 300, ImageFormat.Png);        
Dim barcode As Ean14 = New Ean14("1234567890123")
barcode.Draw(pngFilePath, 300, ImageFormat.Png)

In this topic