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
3
votes
1 answer

Writing correct ESC/POS commands for POS printer

I'm trying to write proper ESC/POS commands for 58mm POS thermal printer. I tried to input this commands as ASCII text and also converted it to HEX, but in both cases printer print just this code, not receipt output. Something wrong is with code,…
user2498887
3
votes
1 answer

Bar Code in C# not getting detected

I have a report (.rdlc) file which has information from an ID card. Now I am taking content from an excel file and filling up the id card. That card gets exported to a (.pdf) file. That's what the program does. when I print it, the bar code is…
votelessbubble
  • 788
  • 6
  • 19
2
votes
1 answer

Image appearing larger than actual size in PDF

I have the following barcode image: I'm using the following iTextSharp VB.NET script to generate a PDF document containing this barcode: Dim pdfDocument As iTextSharp.text.Document = Nothing Dim filename As String =…
Curtis
  • 101,612
  • 66
  • 270
  • 352
2
votes
1 answer

ZebraDesigner 3 - What are the .default and .variables formats that available on the print screen?

Has anyone used the ZebraDesign 3 and tried to Load the .default or .variables files? Are they used to connect the data on import, or are these formats that allow you to import the default values for the Variable Data? Here are the screenshots where…
2
votes
1 answer

Printing Barbeque Barcodes

I've been reading examples for printing in Java for hours, but I haven't found the right site I guess. My problem is, that I want to print 5 barcodes (created with barbeque project) on 1 page in a form like that: The first 4 barcodes in font size…
user882928
  • 21
  • 2
2
votes
1 answer

Escpos Thermal ZJ-58 Python Code128 Barcode print shows nothing

from escpos.printer import Usb p = Usb(0x0416, 0x5011, 0, 0x81, 0x03) p.text("=================\n") #p.image("./barcode/barcode.png") #p.barcode('1324354657687', 'EAN13', 64, 2, '', './fonts/code128.ttf') ### barcode(code, bc, width, height, pos,…
ikinciadam
  • 119
  • 1
  • 12
2
votes
3 answers

How to generate Random Number and Barcode in windows form Using C#?

I am creating Windows application using C#. Here i have 6 numbers Batch Key:abc123 product Key:xyz456 Order key:mno789 batch Number:12345 product Number:45678 order key:97354 Here i want to generate random number using these 6 numbers and In a…
Appu
  • 29
  • 2
  • 3
2
votes
1 answer

How to specify the length of printing document in CSS

I'm printing barcodes using a thermal printer. The size of each sticker on roll is (width: 3inch, height: 1.5inch). everything is working fine but the problem is I'm getting 3 or 4 blank stickers before the printed one. how can I set the length i.e…
Zainul Abideen
  • 1,829
  • 15
  • 37
2
votes
2 answers

TSC TSPL TSPL2 Printer Programming

I'm wondering if there's a function, or at least the best way, to print on a 3 labels (column) per row paper such as this: I'm asking because on the provided label design software (that came with the printer) I can input column count (along with…
rlatief
  • 715
  • 5
  • 14
2
votes
1 answer

How do I emulate key function CTRL-B to a barcode

This is my first post on this website, can't seem to solve the problem. How do I emulate key function Ctrl+B to a barcode so i can scan the barcode with a scanner without pressing Ctrl+B. I've tried reading the ASCII Control Codes ASCII control…
2
votes
1 answer

Ean 13 Font does not read from scanner

I just downloaded ean 13 font. I'm writing a barcode in word example: 5200095632132 but when I print it, my scanner can't read it. Am I doing something wrong? In other barcode fonts I read that you need to place '*' as character start and end. Like…
user6927546
  • 33
  • 1
  • 2
  • 7
2
votes
1 answer

How to use font "Code 128" in RDLC

I have a string that is passed to RDLC report as parameter. How can I make the RDLC report display it as barcode, using the Code 128 code.
user6349792
2
votes
1 answer

Barcode4J on Android ( missing BufferedImage support )

I have been trying to use Barcode4J on Android but I can not seem to get BufferedImage class and I am not sure how I am suppose to replace this class with anything from Android.graphic.* which does not seem to have something similar. Also the…
2
votes
1 answer

How to produce a Code 39 that can be reliably read after faxing

My application is generating a Code 39 barcode but a customer is having problems with their document management system recognizing the barcode after the prints have been scanned and re-printed. I have also tested it using an online barcode reader…
Jack
  • 515
  • 1
  • 5
  • 17
2
votes
1 answer

Generate Bar Code CI 39 with CoreImage

I need to implement a barcode generator (I don't want a barcode reader). So I found this and it works great for the Code 128 symbology. How can I generate a Code 39 symbol?
Marco Rossini
  • 469
  • 2
  • 6
  • 19
1 2
3
16 17