zebra-printers

How to stop a Zebra Printer RW 420 from automatically feeding lots of extra paper when issuing command printImage from printer.getGraphicsUtil?

荒凉一梦 提交于 2019-11-27 22:44:01
问题 I am using a zebra RW420 in an android project and I am coding and I find that even when simply testing the printer using the ZSDK Developer Demos the printer is printing lots of extra paper when it is issued a print command. In this case I am testing out the signature capture and print demo. I do find that if I connect it to the computer and print a label created using Zebra Designer it prints the label properly with no extra paper (in fact i wouldn't mind a couple of millimeters extra in

Zebra iMZ320 image printing feeds too much paper

拈花ヽ惹草 提交于 2019-11-27 16:58:48
问题 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;

iOS Bluetooth printer?

一个人想着一个人 提交于 2019-11-27 16:09:39
问题 Does anybody suggest a mobile printer able to print receipt with a good SDK to interface wireless an iOS application adhoc developed ? The printer should be small and should use rechargeable batteries for field use. I cannot use wifi because not always a trusted access point (customer premises) is available, so I think to use Bluetooth, but of course any suggestion is welcome ! FYI I already checked Zebra printers SDK for iOS but it seems able to print only using a TCP/IP address, it means

Emulate ZPL printer

試著忘記壹切 提交于 2019-11-27 15:15:52
问题 To emulate ZPL printer on my mac I searched through internet for a few days. Finally I've got a solution to post here, so other users could find it helpful. I wanted to post my solution here Emulate Zebra printer But "thanks" for those who decided that this question duplicates another one, which in my opinion totally false. So the only option for me is to create another question and answer to it. 回答1: So, to emulate ZPL printer on your mac (possibly windows too): Install this chrome app Zpl

Printing PNG images to a zebra network printer

风格不统一 提交于 2019-11-27 12:55:05
I am trying to find a way of printing images to a zebra and having a lot of trouble. According to the docs: The first encoding, known as B64, encodes the data using the MIME Base64 scheme. Base64 is used to encode e-mail atachedments ... Base64 encodes six bits to the byte, for an expantion of 33 percent over the un-enclosed data. The second encoding, known as Z64, first compresses the data using the LZ77 algorithm to reduce its size. (This algorithm is used by the PKZIP and is intergral to the PNG graphics format.) The compressed data is then encoded using the MIME Base64 scheme as described

PHP to Zebra Printer

淺唱寂寞╮ 提交于 2019-11-27 12:46:08
问题 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 :-) ................................................................................................................................

Raw printing directly to a USB printer, bypassing Windows spooler

旧时模样 提交于 2019-11-27 06:39:10
问题 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

Send raw ZPL to Zebra printer via USB

守給你的承諾、 提交于 2019-11-27 05:22: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? 回答1: 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

.NET code to send ZPL to Zebra printers

大城市里の小女人 提交于 2019-11-26 19:30:46
Is there a way to send ZPL (Zebra Programming Language) to a printer in .NET? I have the code to do this in Delphi, but it is not pretty and I would rather not try to recreate it in .NET as it is. Darin Dimitrov Take a look at this thread: Print ZPL codes to ZEBRA printer using PrintDocument class . Specifically the OP pick this function from the answers to the thread: [DllImport("kernel32.dll", SetLastError = true)] static extern SafeFileHandle CreateFile(string lpFileName, FileAccess dwDesiredAccess, uint dwShareMode, IntPtr lpSecurityAttributes, FileMode dwCreationDisposition, uint

Printing PNG images to a zebra network printer

爱⌒轻易说出口 提交于 2019-11-26 16:09:35
问题 I am trying to find a way of printing images to a zebra and having a lot of trouble. According to the docs: The first encoding, known as B64, encodes the data using the MIME Base64 scheme. Base64 is used to encode e-mail atachedments ... Base64 encodes six bits to the byte, for an expantion of 33 percent over the un-enclosed data. The second encoding, known as Z64, first compresses the data using the LZ77 algorithm to reduce its size. (This algorithm is used by the PKZIP and is intergral to