zebra-printers

get ZPL Code From zebra designer?

自古美人都是妖i 提交于 2019-11-29 21:35:56
I'm using Zebra Designer 2.2.2 (Build 2728) Question Is there is a way of extracting the ZPL code from the zebradesigner i can't even export it to zpl file the only option i have is save it as .lbl You can add a new ZebraDesigner ZPL driver to the system and use a file as the port. Then when you "Print" the document, it will write the ZPL code to the file. Note that it might have some header information before the first ^XA which you might not need. UPDATE : (How to add local port on a driver) Go to Printer Properties Click on the Ports tab Click Add Port Select Local Port and click New port

How to print directly to label printer from Internet Explorer without prompt

我与影子孤独终老i 提交于 2019-11-29 15:38:37
问题 I have a mysql database containing upc numbers that I would like to print to labels with a zebra printer (LP2824). I would like to somehow be able to send those numbers directly to my label printer, which is not the default printer without the user being prompted. As far as I can tell, IE is the only option as some type of activeX control is required to make this happen. I found a direct printing example at meadroid.com using ScriptX, but I'm not willing to pay their licensing fee. I also

Sending data to USB printer in C#?

夙愿已清 提交于 2019-11-29 11:53:35
问题 I have script code for zebra TLP2844 printer in a text file. I need to print that script file to a printer connected via USB. I executed that script using parallel port by using DOS command: /c type filename.txt >PRN But the printer is coonnected to USB. How to send printing commands to usb? Should I use the printdocument class? 回答1: Microsoft has this sample code available to use: How to send raw data to a printer by using Visual C# .NET using System; using System.Drawing; using System

Zebra iMZ320 image printing feeds too much paper

前提是你 提交于 2019-11-29 02:39:26
I'm trying to use the Link-OS SDK to send images to a Zebra iMZ320 printer using the GraphicsUtil class in XCode for iOS. -(void)printImage:(UIImage *)image{ NSString *serialNumber = @""; EAAccessoryManager *sam = [EAAccessoryManager sharedAccessoryManager]; NSArray * connectedAccessories = [sam connectedAccessories]; for (EAAccessory *accessory in connectedAccessories) { if([accessory.protocolStrings indexOfObject:@"com.zebra.rawport"] != NSNotFound){ serialNumber = accessory.serialNumber; break; } } self.connection = [[MfiBtPrinterConnection alloc] initWithSerialNumber:serialNumber]; NSError

Sending a Barcode to a Zebra Printer from a Java Application

◇◆丶佛笑我妖孽 提交于 2019-11-29 02:01:36
I am creating a java application that retrieves a userId from a database, transforms it into a barcode, then sends it to a printer. I am planning to use a Zebra printer and I was wondering if anyone has experience of printing to a Zebra printer from a Java application; if so, could you share some code making this possible? Thanks in advance, Tumaini Mersenne There are two ways to work with Zebra printers. The first is to print as on regular printer. Java printing basics are well explained in official tutorial . End of page will treated by printer as end of sticker. The disadvantage of this

PHP to Zebra Printer

可紊 提交于 2019-11-28 19:44:09
I have this Zebra ZM400 Printer connected to the network ( 192.168.1.50 ). And I am trying to push a content to this printer directly from PHP. This is the idea and I am just stuck without any way to do this. I tried the file_put_contents('192.168.1.50', $content) but with no success. Would appreciate if anyone could please help me in sorting out this. Thank you :-) ................................................................................................................................. Solution: I printed using the LPR Protocol. No need to install driver or anything. The LPR Printing

Emulate Zebra printer [duplicate]

牧云@^-^@ 提交于 2019-11-28 18:48:55
Possible Duplicate: Print preview ZPL II commands using .NET WinForm before sending it to Zebra printer I am working on a Java app that prints tickets to a Zebra printer. The problem is that I am working remotely and don't have access to the Zebra printer (or any other printer actually). I would like to know if there is a way to emulate the Zebra printer so that I can visualize the result of the print jobs generated by my app (to PDF, bitmap image etc.). As I understand (I am fairly new to this) Zebra printers use ZPL commands. Is there any software printer emulator for Windows (7) that

Raw printing directly to a USB printer, bypassing Windows spooler

佐手、 提交于 2019-11-28 11:58:45
I'm experimenting with a Zebra TTP8200 thermal printer. For my application I need to print plotter type traces continuously until the user hits a stop button. I've had a play with the ZPL language and I can successfully generate bitmap data and dump out my bitmap a line (or few lines) at a time by outputting the ZPL as raw data. I'm using some Microsoft demo code to output the raw data to the printer and this works great, bar one issue: the spooler. It turns out that every time I output some data using the MS rawprn.exe code it is actually spooled as a print job and then transmitted to the

Sending commands directly to Zebra EPL

筅森魡賤 提交于 2019-11-28 06:07:34
问题 I am trying to send commands directly to a Zebra TLP2844 printer. I followed the suggestion made here and my final code came to be as follows: var cm: String; p: TPrinter; i: integer; begin p := Printer; p.BeginDoc; for i := 0 to memo1.Lines.Count-2 do begin cm := memo1.Lines[i]; if Escape(p.Canvas.Handle, PASSTHROUGH, Length(cm), PAnsiChar(cm), nil) = 0 then ShowMessage('Command error: ' + IntToStr(GetLastError)); end; p.EndDoc; end; The content of memo1 is (first line is empty) as purposed

Send raw ZPL to Zebra printer via USB

ぐ巨炮叔叔 提交于 2019-11-28 04:33:35
Typically, when I plug in my Zebra LP 2844-Z to the USB port, the computer sees it as a printer and I can print to it from notepad like any other generic printer. However, my application has some bar code features. My application parses some input and generates an in-memory string of ZPL. How would I send this ZPL data to my USB device? I found the answer... or at least, the easiest answer (if there are multiple). When I installed the printer, I renamed it to "ICS Label Printer". Here's how to change the options to allow pass-through ZPL commands: Right-click on the "ICS Label Printer" and