zpl-ii

Which should not be included in this ZPL Code?

与世无争的帅哥 提交于 2020-01-05 04:10:08
问题 I am developing a Windows Mobile App that requires printing into a Zebra printer. Problem is, I do not have the printer with me here in my country since the client did not provide any. My approach was to design a label first in ZebraDesigner2, then print out the label into a text file. Printing the label to a text file instead of a printer sends out the ZPL Code to produce the label I was trying to print. Hence, I can generate ZPL codes faster by designing a label first then seeing the ZPL

UTF-8 character not printing with Zebra printer

懵懂的女人 提交于 2019-12-22 09:16:04
问题 I am trying to print Persian character on my Zebra Z410 label printer. But for some reason it is printing ?????. The ZPL code I am sending to the printer is ^XA ^FO50,50 ^PA1,1,1,1 ^A@N,50,50,E:TT0003M_.TTF^FDعاسشاتعفثه^FS ^XZ I am using the Zebra Setup Utilities-Open communication with printer. Please Help!! 回答1: Your example above did not specify ^CI28 which would let you use UTF-8 instead of field hex. ^XA ^FO50,50 ^PA1,1,1,1 ^A@N,50,50,E:TT0003M_.TTF^CI28^FDعاسشاتعفثه^FS ^XZ Zebra Setup

Convert image to GRF format

限于喜欢 提交于 2019-12-20 02:57:24
问题 I have a Zebra Gk420t printer that allows me to make stickers and I need to print an image on them. I read that the images must be in GRF format (pure hex). Someone knows how can I convert the images to GRF format in Linux? I read about Ztools software on Windows, but nothing interesting on Linux... 回答1: Zebra provides a Java API that can convert graphics to GRF. You can use the command line interface to convert images to GRF like so : java -jar ZSDK_API.jar graphic myImage.jpeg -s

ZPL How to center text with variable length

 ̄綄美尐妖づ 提交于 2019-12-11 07:08:36
问题 I use Zebra Designer to create my labels. But I have a problem to center my elements. Indeed when I create a text box with Zebra Designer, it has a fixed length and when I replace the text inside (by a variable Php giving me the price for example) ==> if this text is larger than this that I have defined it does not focus. So I would like to create a text box the width of the label and where the text would be centered inside, regardless of its length CT~~CD,~CC^~CT~ ^XA~TA000~JSN^LT0^MNW^MTD

Printing arabic text using Zebra printer [ZPL]

半世苍凉 提交于 2019-12-07 13:06:32
问题 As the title says Is there any option to print the arabic content ZPL Printer. Thing tried is adding the font and initiate the print ^XA ^FX ^FR ^CF0,40^CI28^FO130,45^FH^FD محاكمة Font file^FS ^XZ My printer has TT0003M_.TTF font installed but it shows "????" when i tried to print arabic using ^XA^FO50,50^AE:TT0003M_.TTFN,50,50^FDمحاكمة^FS ^XZ Any idea how to install a font and print the arabic text using ZPL language? 回答1: ^XA^CI28^CW1,E:TT0003M_.TTF^LL130^FS ^PA0,1,1,1 ^FO50,50^A1N30,30

Printing arabic text using Zebra printer [ZPL]

痴心易碎 提交于 2019-12-05 19:08:47
As the title says Is there any option to print the arabic content ZPL Printer. Thing tried is adding the font and initiate the print ^XA ^FX ^FR ^CF0,40^CI28^FO130,45^FH^FD محاكمة Font file^FS ^XZ My printer has TT0003M_.TTF font installed but it shows "????" when i tried to print arabic using ^XA^FO50,50^AE:TT0003M_.TTFN,50,50^FDمحاكمة^FS ^XZ Any idea how to install a font and print the arabic text using ZPL language? ^XA^CI28^CW1,E:TT0003M_.TTF^LL130^FS ^PA0,1,1,1 ^FO50,50^A1N30,30^FDمحاكمة‏ ^FS ^XZ Updated this answer to match the other question Also found this on the Zebra KB - https://km

UTF-8 character not printing with Zebra printer

耗尽温柔 提交于 2019-12-05 16:16:04
I am trying to print Persian character on my Zebra Z410 label printer. But for some reason it is printing ?????. The ZPL code I am sending to the printer is ^XA ^FO50,50 ^PA1,1,1,1 ^A@N,50,50,E:TT0003M_.TTF^FDعاسشاتعفثه^FS ^XZ I am using the Zebra Setup Utilities-Open communication with printer. Please Help!! Your example above did not specify ^CI28 which would let you use UTF-8 instead of field hex. ^XA ^FO50,50 ^PA1,1,1,1 ^A@N,50,50,E:TT0003M_.TTF^CI28^FDعاسشاتعفثه^FS ^XZ Zebra Setup Utilities is not handling the UTF-8 correctly. I just tested with PuTTY to a network printer and the UTF was

jZebra - Getting started with raw commands

↘锁芯ラ 提交于 2019-12-05 06:09:28
问题 I've been given the task of converting a web page with a barcode to a one click label print. I've got jZebra up and running, but I have no idea where to get started as far as understanding how to write commands for a printer. I've Google'd just about everything I can think of regarding this. Basically, I am trying to understand this code: applet.append("^XA^CF,0,0,0^PR12^MD30^PW800^PON^CI13\n"); // Draws a line. applet.append("^FO0,147^GB800,4,4^FS\n"); applet.append("^FO0,401^GB800,4,4^FS\n"

How to print a logo on labels using a Zebra printer and sending ZPL instructions to it

荒凉一梦 提交于 2019-12-03 12:51:19
问题 I would like send ZPL instructions to a Zebra printer (GK420t for now). I'm printing 50mm x 20mm labels. I would like a logo (small ~ 5mm x 5mm image) to be printed on the upper left corner of the label. I would like to know the steps I should follow to do this. I have been reading and trying a few things from the ZPL manual but I don't really understand how it works and couldn't find a working example. It looks like I have to "load" the image into the printer first (in a so-called "storage

Convert image to GRF format

情到浓时终转凉″ 提交于 2019-12-02 02:08:09
I have a Zebra Gk420t printer that allows me to make stickers and I need to print an image on them. I read that the images must be in GRF format (pure hex). Someone knows how can I convert the images to GRF format in Linux? I read about Ztools software on Windows, but nothing interesting on Linux... Zebra provides a Java API that can convert graphics to GRF. You can use the command line interface to convert images to GRF like so : java -jar ZSDK_API.jar graphic myImage.jpeg -s myConvertedImage.GRF Someone knows how can I convert the images to GRP format in Linux? You're over-thinking this.