Questions tagged [barcode-printing]

The generation of barcode symbols (1d & 2D) on printed media.

This tag deals with the generation of barcodes on print media. The proper output of a barcode determines its legibility for scanning devices. Many factors influence a barcode's readability including: reflectance, contrast, maintenance of quiet zone, adherence to specifications, printing technology, print media, physical defects. Barcode verification equipment exists to grade barcodes according to the international barcode quality specification ISO/IEC 15416 (1D) and ISO/IEC 15415 (2D). Suppliers of barcode labels and suppliers of products that must meet customer labeling specifications are often contractually obligated to submit samples for verification.

http://en.wikipedia.org/w/index.php?title=Barcode&section=11#Quality_control_and_verification

245 questions
18
votes
2 answers

Make text in ZPL label bold or underlined?

Due to a new EU law every food packaging label has to outline possible allergy-causing ingredients by either styling them bold or underlined in the ingredients list. Currently I'm printing my labels via ZPL to zebra printers. I checked the ZPL…
Stee
  • 213
  • 1
  • 2
  • 8
9
votes
6 answers

ZXing on Android PDF417

Was anybody able to read the PDF417 barcode with use of the ZXing library on the Android OS? They are supporting this - and according to their page it is in 'alpha' stage. We are not looking for perfect solution - since the PDF417 is pretty complex…
STeN
  • 6,262
  • 22
  • 80
  • 125
9
votes
1 answer

URL as barcode (not QR)

QR codes are great for printing machine readable URLs if you have a square space. But they look horrible if placed in a text as they are much taller than a line of text. Is there a way I can have a 1d-barcode with the same functionality as QR code…
Ole Tange
  • 31,768
  • 5
  • 86
  • 104
8
votes
1 answer

Printing with Barby gem - barcode image is fuzzy

Anyone using the Barby gem ( https://github.com/toretore/barby ) to generate and print barcodes? I'm generating and printing png barcode files and they are coming out fuzzy. Note that the generated PNG files look great, even when zooming way in on…
99miles
  • 10,942
  • 18
  • 78
  • 123
8
votes
2 answers

How to get to print in DymoLabel printer using javascript?

I just want to call the API's of Printer from a web page . and simply wanna print some stuff in it . I have done so far .
user2230872
7
votes
2 answers

ZPL - Barcode Missing a digit when printed

I am trying to print a Code 128 barcode on a label using the following the piece of ZPL with a Zebra ZP 450 printer: ^BY3^BCN,112,N^FO090,660^FD>;>89102100^FS I'm expecting the barcode to scan as "9102100". However, when I scan the printed…
Mike
  • 1,039
  • 1
  • 12
  • 20
6
votes
2 answers

How to fix java.lang.NoClassDefFoundError from barcode4j-2.1.jar on jasperReports?

I'm trying to print barcode using Java (Web application) and Using Jaspoersoft iReport Designer 4.5.0 Here is my Java code : public String onBtnPrintClick() throws JRException, IOException { Integer pos_number =…
Ninjin
  • 161
  • 2
  • 3
  • 13
6
votes
2 answers

Is this code for calculating Code128 barcode check digits correct?

Based on my understanding* of the check digit calculation for Code128 barcodes (which differs radically/drastically from most of the other standard barcode types), my code below is correct. However, I would appreciate a "sanity check" by those who…
B. Clay Shannon-B. Crow Raven
  • 8,547
  • 144
  • 472
  • 862
5
votes
1 answer

SATO USB printing in C#

I have been trying to print to a SATO GL408e printer. I am trying to send the data via USB interface but have no example code to do that with. I tried to use the example code from here: http://support.microsoft.com/kb/322091 but it runs with no…
kereberos
  • 1,253
  • 1
  • 10
  • 20
5
votes
3 answers

Any good pdf417 Barcode libraries for Python?

I'm looking for a good python module to generate pdf417 barcodes. Has anyone used one they liked? Ideally I would like one with as few dependencies as possible, and one that runs on both linux and MacOSX.
Ken Cochrane
  • 75,357
  • 9
  • 52
  • 60
5
votes
1 answer

GS1-128 barcode parsing

Scanner Model :- Motorola- DS4208-HC We need to parse the GS1-128 barcode. We know they are going to use GTIN(01), lot number(10), Expiration date(17), serial number (21). Input String:- (01)07612345678900(17)100503(10)AC3453G3(21)455777 The problem…
5
votes
3 answers

Writing Barcode content as label below the Barcode using Java Zxing API

I am using zxing api for creating barcode. But while creating i am not able to write barcode content as label below the barcode. output -- output required -- The code to generate these barcode are as such - import java.io.File; import…
joshi
  • 85
  • 1
  • 10
5
votes
1 answer

how to print zpl barcode vertically in vertical label

i am using zebraGk420d printer. i am using vertical barcode label. how to print the text and barcode in vertically. my zpl code like this $barcode_ZPL_code="^XA ^FO 150,50^AD,40^FH^FDSALABED_20CARGO^FS…
Krishna38
  • 707
  • 1
  • 16
  • 43
4
votes
1 answer

Problems printing barcodes / barcode fonts

Im trying to update a peice of software we have where a barcode is generated by a font then printed out, only the problem is that our barcode scanner cant read a number of the barcodes generated with this font. I have verified that the font is the…
Purplegoldfish
  • 5,268
  • 9
  • 39
  • 59
4
votes
2 answers

Generate Code 39 Barcode

I have this code to generate a barcode: func generateBarcode(from string: String) -> UIImage? { let data = string.data(using: String.Encoding.ascii) if let filter = CIFilter(name: "CICode128BarcodeGenerator") { …
jbrown94305
  • 185
  • 2
  • 11
1
2 3
16 17