zebra-printers

Send Raw Data to ZPL Printer using Visual Basic (MS Access 2000)

随声附和 提交于 2019-12-04 05:37:27
问题 This is all that I can find, none of them work. Option Compare Database Option Explicit Private Type DOCINFO pDocName As String pOutputFile As String pDatatype As String End Type Private Declare Function ClosePrinter Lib "winspool.drv" (ByVal _ hPrinter As Long) As Long Private Declare Function EndDocPrinter Lib "winspool.drv" (ByVal _ hPrinter As Long) As Long Private Declare Function EndPagePrinter Lib "winspool.drv" (ByVal _ hPrinter As Long) As Long Private Declare Function OpenPrinter

SSRS 2005 How to Print 4“ X 3” label as Portrait.. SSRS assumes Landscape

可紊 提交于 2019-12-04 05:08:10
I have a SSRS 2005 report form that is printing to a Zebra ZDesigner TLP 2844-Z label printer. The Interactive and Page sizes are set to 4" wide by 3" high. Since there is no paper orientation in SSRS, it is assuming this to be a landscape report when it should be a portrait thereby printing the labels sideways. The users are able to export to a PDF and print after adjusting the print settings, but the extra clicks to produce/print the pdf's are unacceptable. Is there a way to force the print job to print portrait or another workaround/trick to do this? Can you just set your Page width to be 3

how to write a zpl code inside a php script and how to send it to a zebra printer for printing

送分小仙女□ 提交于 2019-12-03 21:57:53
I want to print a bar code on a label using zebra label printer.Barcode printer model is Zebra GK420d . Sticker print area is 5 cm by 10 cm.I want to do it from a php script.By googling I found some examples and implemented in this way $barcode = "sometext"; $labelcode =<<<AAA ^XA ^FO100,75 ^BCN, 100,Y, N, ^FD$barcode^FS ^XZ AAA; file_put_contents('/dev/lpt1',$labelcode); Will it work when i connect the printer and test?What are the settings that i have to apply for this zebra printer in order to print.I have no idea on zebra printers settings.And also file_put_contents will copy the code to

Make text in ZPL label bold or underlined?

隐身守侯 提交于 2019-12-03 17:02:52
问题 Due to a new EU law every food packaging label has to outline possible allergy-causing ingredients by either styling them bold or underlined in the ingredients list. Currently I'm printing my labels via ZPL to zebra printers. I checked the ZPL manuel 1 & 2 and didn't find way how to print something in bold or underlined. Is there any way to do this? Example: "Ingredients: water, sugar, milk, cheese, chocolate" SHOULD BE NOW: "Ingredients: water, sugar, milk , cheese , chocolate" My current

How to print (barcode) labels from a Ruby on Rails Application?

北城以北 提交于 2019-12-03 16:24:55
My first application I have developed in RoR is for some Kiosk Touchscreen PCs used in our stock. When the stock worker picked up some material he enters the quantity in a Form. Now I want to print a label containing: customer name, material description, quantity, and a barcode on our Zebra printer. How would I do that from a Ruby on Rails Application ? Sending directly the control chars needed for ZPL (Zebra Printer Language) from the controller ? ( not very comfortable ) Create a view in HTML send it to the client, and the client has to print it. ( not very confortable and error prone, as

Include PNG in reciept on a LP2844Z (Zebra Printer) [duplicate]

流过昼夜 提交于 2019-12-03 16:12:21
This question already has answers here : Closed 5 years ago . Printing PNG images to a zebra network printer (5 answers) I'm working on creating a HTML5 canvas based signature/drawing box. Currently we save the canvas on the server as a PNG, but can easily save the base64 string in the database. Now the question is how do we include the signature on the printed receipt. Currently we use a ^GF field to handle printing images, but the question is what format the PNG file needs to be in for the printer. Can I simply include the Base64 encoded string? Or should I convert it to an ASCII Hex string?

Can I print with windows phone 8 using Bluetooth to a portable printer?

醉酒当歌 提交于 2019-12-03 15:07:47
I am developing an app on windows phone 8. This app must print tickets using a mobile printer like a Zebra MZ 220 Mobile Printer. I have been googling trying to get information about printing to a bluetooth printer using windows phone 8 but there is not to much information. My fear is to have to start a new development in another mobile operating system like android, just because wp8 does not support printing on bluetooth. Is there any example about it? Is there any portable printer compatible with Microsoft Windows Phone 8? This code works for me on a Zebra 420 paired with a Nokia 820.

Can you direct pdf print to a zebra printer

折月煮酒 提交于 2019-12-03 14:32:57
Is it possible to direct print a stored pdf via a zebra printer in Java? I can't find any mention of them being compatible with direct printing and I can't get it to print. Would I need to communicate directly via zpl? The zebra printer works fine when printed through Acrobat Reader, does Adobe Reader translate the PDF into zpl? The zebra printer works fine when printed through Acrobat Reader, does Adobe Reader translate the PDF into zpl? No. Adobe Reader prepares a document that the system's print service can consume. The print service then invokes the Zebra drivers, and those are what

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

Printing on a Bluetooth printer

喜欢而已 提交于 2019-12-03 11:04:23
问题 I need to print on a Bluetooth printer. I already have a program for the Windows mobile platform, that sends commands and data via Bluetooth to a Zebra RW 420 printer, using the Zebra Printer Protocol. It's just a stream sent on Bluetooth. Now, we'd like to do this on Android. I would like to know some basic information: Is this type of printing possible/doable (we've seen very little information regarding printing on Android), or is Bluetooth limited to audio and file transfer? How to