0

I am using EPL commands to print barcodes(Zebra GC420t). Now i need to print QR code using EPL commands(Zebra GC420t). Please help to find out the solution.

Delphi Coder
  • 1,723
  • 1
  • 14
  • 25
MRT
  • 61
  • 1
  • 1
  • 3

1 Answers1

0

Suggested: EPL Programming Guide

As seen on the docs, QR codes can be printed with the b (barcode) command:

Format: b(x-position),(y-position),Q,(model),"(qr code data)"

So, if you wanted to print a QR code with a "hello" value it would be something like this

b264,130,Q,m2,"hello"
nikitastrike
  • 101
  • 1
  • 8