Hello!

I would like to create a barcode using iText. I manage to create a barcode
but as I do not know anything about barcodes I can not verify that it is
correct according to my requirements.

My barcode has the following requirements:
Code 128 according to EN799
Characterset C (i.e. double dencity)
Start character C
Stop character I do not know, is it depending on the start character?
Checksum shall be generated
The qualitylever shall be Overall Symbol Grade B according to ISO 15416
Max barcode length is max 55 mm.
Barcode height at least 7 mm.

My code so far looks like this:

Barcode128 code128 = new Barcode128();
code128.setCodeType(code128.CODE128);
code128.setBarHeight(20);
code128.setGenerateChecksum(true);
code128.setCode("12345 6789");
Image image128 = code128.createImageWithBarcode(cb, null, null);
cb.addImage(image128,image128.width(),0,0,image128.height(),psize.left()+230
,psize.bottom()+120);

What more do I have to do to meet my requirements?

/Erik




-------------------------------------------------------
This SF.NET email is sponsored by:
SourceForge Enterprise Edition + IBM + LinuxWorld = Something 2 See!
http://www.vasoftware.com
_______________________________________________
iText-questions mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/itext-questions

Reply via email to