zebra-printers

Print ZPLII QR to open url

﹥>﹥吖頭↗ 提交于 2020-01-22 02:55:07
问题 I'm using Zebra ZPLII to create a label with a QR code to open an specific url. When I use iPhone camera to scan the QR phone shows "unusable data" and when I try with an external QR reader the text extracted from the QR is not the same from the label. For example if I write www.google.com the string that I have from reading the QR is .google.com if I use https://www.google.com the result is ps://www.google.com This is my label desing ^XA ^FX Top section with company logo, name and address.

-ObjC flag for Restkit causes compilation error when I add libZSDK_API.a

柔情痞子 提交于 2020-01-14 18:54:54
问题 I am using the RestKit to consume web services. RestKit worked fine until I tried add the libZSDK_API.a library (this library is to manage the zebra printers by Network or bluetooth) Several Tutorials indicate this step to add the RestKit to iOS Project: Add in "other linker flags" the value -ObjC But this flag (-ObjC) cause compilation error when I added the library, When I remove this flag the iOS app compile correctly but when I execute the app is crashed because the Project does not have

Zebra Printer direct communication

丶灬走出姿态 提交于 2020-01-13 11:37:48
问题 Based on this question I have implemented the following code to send direct commands to my Zebra TLP2844 var cmm: AnsiString; i: integer; begin commands.saveToFile('path\to\a\file'); Printer.BeginDoc; cmm := ''; for i := 0 to commands.Count-1 do cmm := cmm + commands[i] + #10; Escape(Printer.Canvas.Handle, PASSTHROUGH, Length(cmm), PAnsiChar(cmm), nil); Printer.EndDoc; end; commands is a TSringList containing all the commands I want to send to the printer. Note that I save all the commands to

Send data to thermal printer [duplicate]

孤街浪徒 提交于 2020-01-11 10:41:18
问题 This question already has answers here : Closed 7 years ago . Possible Duplicate: .NET code to send ZPL to Zebra printers My company has a Eltron 2543 thermal printer. I'm developing an VB.NET application incorporating FedEx web services to print off shipping labels. I can save off the data file without a problem, but I was wondering how I send this data stream to a shared printer on a network. Do I need to include the Eltron 2543 driver in my solution? Sort of lost here and would love if

Sending raw text to printer via usb

。_饼干妹妹 提交于 2020-01-07 09:03:32
问题 I am trying to send ZPL commands to a Zebra ZT230 printer. The printer and drivers are installed and the printer port is "USB003". The PC communicates perfectly with the printer via either Zebra Printer Setup Utilities or ZebraDesign. I tried the following code: Private Declare Function CreateFile Lib "kernel32.dll" (ByVal lpFileName As String, ByVal dwDesiredAccess As FileAccess, _ ByVal dwShareMode As UInteger, ByVal lpSecurityAttributes As IntPtr, ByVal dwCreationDisposition As FileMode, _

Sending raw text to printer via usb

故事扮演 提交于 2020-01-07 09:03:11
问题 I am trying to send ZPL commands to a Zebra ZT230 printer. The printer and drivers are installed and the printer port is "USB003". The PC communicates perfectly with the printer via either Zebra Printer Setup Utilities or ZebraDesign. I tried the following code: Private Declare Function CreateFile Lib "kernel32.dll" (ByVal lpFileName As String, ByVal dwDesiredAccess As FileAccess, _ ByVal dwShareMode As UInteger, ByVal lpSecurityAttributes As IntPtr, ByVal dwCreationDisposition As FileMode, _

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

Which SDK should I use for KR403 Zebra Printer

牧云@^-^@ 提交于 2020-01-05 03:28:20
问题 I am writing a .Net WPF application using C# for a Windows 7 64 bit platform. My application needs to communicate with a Zebra KR403 printer connected through USB. My questions may be very basic, but I'm hoping this post will help others who are new to using this printer in .Net. 1. Which SDK should I be using? Is it as simple as adding a .dll to my project and using it? I have tried using the Windows CE SDK, but I get a BadImageFormatException when the ZSDK_API.dll tries to load ZebraUsb.dll

Which SDK should I use for KR403 Zebra Printer

元气小坏坏 提交于 2020-01-05 03:27:12
问题 I am writing a .Net WPF application using C# for a Windows 7 64 bit platform. My application needs to communicate with a Zebra KR403 printer connected through USB. My questions may be very basic, but I'm hoping this post will help others who are new to using this printer in .Net. 1. Which SDK should I be using? Is it as simple as adding a .dll to my project and using it? I have tried using the Windows CE SDK, but I get a BadImageFormatException when the ZSDK_API.dll tries to load ZebraUsb.dll

Converting RGB image to Floyd-Steinberg image using PHP or Javascript for Zebra printers

痞子三分冷 提交于 2020-01-03 08:48:10
问题 I am developing a desktop based PHP application where we need to capture image of a person and print it on the label using Zebra GC420t printer The expected image should look like below image. When I try to print the it gives the output like below image. I am using the following code for the conversion of the rgb image to dithering image using php code $photo_url=""; if(isset($_GET['photo'])){ $photo_url=$_GET['photo']; } function image2grf($filename='$photo_url', $targetname = 'R:IMAGE.GRF')