Skip to main content
Filter by
Sorted by
Tagged with
0 votes
0 answers
128 views

I have built a Python application that sends ZPL code to my Zebra ZD421 printer via a socket connection. The ZPL code is stored in a .json file that looks like this: [ { "zplCode": &...
0 votes
0 answers
48 views

This is my PRL file which is generated through ZEBRA printer ^XA ^RS,,,3,N,,,1 ^RR3 ^XZ ^XA ^SZ2^JMA ^MCY^PMN ^PW1311 ~JSN ^JZY ^LH0,0^LRN ^XZ ^XA ^FO54,78 ^BQN,2,3^FH\^FDQA,<?xml version="1.0&...
0 votes
0 answers
59 views

I've tried this kind of code to have something "correct" to generate the label I need: GS1Barcode barcode = new GS1Barcode(); barcode.ProductCode = ProductCode.ParseGtin(...
0 votes
0 answers
99 views

i have this ZPL code iam trying to send it a Zebra printer , i am trying to send this batch file that contains then variable data but actually it is not printed iam asking , whats is wrong ...
0 votes
0 answers
85 views

This requirement is for an Appian integration with Zebra printer. I am trying to use an Appian plug in to print QR codes/Bar codes to Zebra printer. One of the input parameters for the printer is ...
0 votes
0 answers
182 views

I'm using a Zebra Technologies ZTC ZT230-300dpi ZPL printer to push an image via network to the printer. I have a Word template that I convert to HTML using OpenXMLPowerTools, then to an image using ...
0 votes
0 answers
109 views

I'm sending some labels for printing via ZPL commands. from zebra import Zebra Zebra("S4M").output("""^XA~FDHello World^XZ""") # print label I checked in the ...
0 votes
0 answers
79 views

I have to take 2 copies of 3-page label sequentially so that all the 3 pages will be printed before the copy starts. How can I write this code in ZPL - Zebra language? This is a sample code. I tried ...
0 votes
0 answers
258 views

I want to send raw ZPL commands to a Zebra printer from a Blazor web application (on client side). This printer is not accessible from the Blazor server app. Is it possible to print with the Zebra ...
0 votes
0 answers
313 views

I have a zp506 printer and I was hoping to find a way to add a small delay between labels when printing. If this can be done in printing preferences, fantastic, otherwise I assume I have to use zpl ...
0 votes
0 answers
32 views

I have a barcode data: ^BY6,3,368^FT12,1032^BCN,,N,N ^FD>;00612345678^FS What I am expecting the barcode to get scanned is 00612345678 but it is getting trimmed to 0061234567 everytime its scanned. ...
0 votes
0 answers
414 views

I am in need of developing an electron based desktop application which will listen for PDFs and ZPL files from a remote server. The application needs to print the PDFs and the ZPL files to the ...
0 votes
0 answers
226 views

I.e. how many labels left to print in the job? Made a test label using ^PQ30 in the internal ZT610 label editor. Shouldn't it then report 30? ~HS doesn't seem to do it, neither does device.jobs.print. ...
1 vote
0 answers
486 views

I'm currently working on a project to develop a ZPL Viewer in Java, aimed at rendering ZPL label designs and providing a user-friendly interface. To achieve this, I am in search of a Java library or ...
0 votes
0 answers
1k views

I create a text in ZPL format using zebra font 0, which is a scalable font. I need to calculate the text width and height, however I didn't know the relation between ZPL font parameter and letter ...
0 votes
0 answers
115 views

I have successfully implemented the Link OS iOS SDK into my Xcode project. I created a bridging header for the .h files, and I am able to print successfully to our Zebra Printers I am having an issue ...
0 votes
0 answers
319 views

Hi everybody i have a question, I made an Android Studio aplication with java to send an label to a printer with ZPL code but dont work, but java code in eclipse it work and create a label. can you ...
0 votes
0 answers
1k views

I have a dedicated text file "MyImages.txt" containing images that I want to be printed on my label. All images are loaded into printer memory using the command ~DG, for example: ~DGLOGO1....
0 votes
0 answers
175 views

i have an application that needs to print zpl strings sending directly to printer. i have tried this code found online from a few yeaars ago public class RawPrinterHelper { // Structure and API ...
0 votes
0 answers
1k views

I am trying to create a GS1-128 barcode using ZPL. The barcode should have parenthesis automatically filled in at the start of the human readable before and after the first two digits. In other words, ...
1 vote
0 answers
3k views

Please help with the following situation: Using ZPL script, I have to generate a barcode with GS1-128 (formally known as Code 128). I have the following specs: The ideal way to label products is with ...
1 vote
0 answers
903 views

I am trying to print a barcode (code 39) to a label (2" x .75") on a Zebra ZT610 (600 DPI) printer, but none of our 3 barcode scanners will decode the barcode. We are encoding a 14-character ...
0 votes
0 answers
926 views

How to rotate image by 90 degree using ZPL command This is the ZPL code that I have written but not able to rotate image by 90 degree. FO901,60^FR^XGX4BIENes,1,1^FS This is the ZPL code that I have ...
0 votes
0 answers
387 views

Hello, I am developing a program for my company. In this project, we need to implement a feature that previews zebra's zpl in C#. Therefore, I want to use an external library (Nuget), but the famous ...
1 vote
0 answers
559 views

Working on a project I need to print barcode labels from ASP NET Core with Blazor on a Zebra printer I have already researched everywhere and found that it can be done with JSPrintManager, but you ...