Ciao a tutti.
Sto provando a stampare in PDF con iTextSharp dei barcode tipo EAN8.
Tutto ok ma lo scanner fa moltissima fatica a leggerli.
Se con tipo ean13 viene letto.
Qualcuno ha mail provato e potrebbe darmi una dritta?
s = _clsFun.CtrlDigit("2" + (string)x["lis_art"] + "0");
cEan.CodeType = BarcodeEAN.EAN8;
cEan.BarHeight = 10; //Altezza EAN
cEan.Size = 7; // Grandezza numero
cEan.Code = s; //(string)x["lis_ean"];
Image imgEan = cEan.CreateImageWithBarcode(cb, null, null);
imgEan.ScalePercent(100); // grandezza immagine
imgEan.Alignment = Element.ALIGN_BOTTOM;
cell = new Cell(new Phrase(new Chunk(imgEan, 0, 0)));