zebra-printers

Make text in ZPL label bold or underlined?

送分小仙女□ 提交于 2019-12-03 05:16:36
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 label code for the ingredients is: ^CF0,15 ^FO13,245 ^FB530,2,,L, ^FH^FD__VAR_INGREDIENTS__ ^FS Thank you

printing QR codes through an ESC/POS thermal printer?

孤街醉人 提交于 2019-12-03 02:47:35
I'm printing some QR codes (from a Ruby script) writing ESC/POS commands to a Epson TM-T20 thermal printer. BTW, I'm writing a simple ESC/POS commands printer "driver". The printer I'm using an Epson TM-T20 (USB interface) I'm doing some tests from a Windows 7 host, using serialport gem. All fine about writing ESC/POS commands for print formatted texts and also linear barcodes, but I have problems uinderstanding the command protocol to print QR CODES, using the only available documentation supplyied by Epson (as far as I know), see: http://www.novopos.ch/client/EPSON/TM-T20/TM-T20_eng_qr.pdf

Printing on a Bluetooth printer

≡放荡痞女 提交于 2019-12-03 00:34:59
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 connect a Bluetooth printer to the Android device. Kris Heath Your best bet will be to use the ZebraLink SDK

Zebra Printing with CUPS no print ZPL or EPL

喜欢而已 提交于 2019-12-02 22:00:47
I have a Zebra GK420d connect to OS X via CUPS. However, when I send files to it that are written in ZPL or EPL they are only printed in plain text. Am I required to change to mode on the printer? Contrary to what others said, you don't need to specially add a raw queue. Instead, you can submit raw files into any queue using -o raw switch: lpr -P CupsPrinterName -o raw path/to/label.zpl Printer name can be found over that link in CUPS: http://localhost:631/printers/ This also works on other platforms that use CUPS, like Linux. You can create a raw CUPS queue with lpadmin. Here's the command

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

白昼怎懂夜的黑 提交于 2019-12-02 10:22:30
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 Lib "winspool.drv" Alias _ "OpenPrinterA" (ByVal pPrinterName As String, phPrinter As Long, _ ByVal

Plot an array into bitmap in C/C++ for thermal printer

混江龙づ霸主 提交于 2019-12-02 08:36:36
I am trying to accomplish something a bit backwards from everyone else. Given an array of sensor data, I wish to print a graph plot of it. My test bench uses a stepper motor to move the input shaft of a sensor, stop, get ADC value of sensor's voltage, repeat. My current version 0.9 bench does not have a graphical output. The proper end solution will. Currently, I have 35 data points, and I'm looking to get 90 to 100. The results are simply stored in an int array. The index is linear, so it's not a complicated plot, but I'm having problems conceptualizing the plot from bottom-left to top-right

What Zebra QLn220 settings do I need to set (and to what value[s]) to get a setting to “stick”?

允我心安 提交于 2019-12-02 07:16:12
问题 I am trying to programatically configure a Zebra QLn220 printer to set its "media.sense_mode" to either "bar" or "gap" (depending on what the user selects). The reliability of these commands working, though, seems very low (sometimes it works, sometimes it doesn't). To test the various possible commands, I used the Zebra Setup Utilities, with the PC plugged into the printer, of course. I sent this command from the util: ! U1 setvar "media.sense_mode" "gap" It worked; I know this, because

Windows IoT - Zebra Bluetooth Printer

╄→гoц情女王★ 提交于 2019-12-02 02:20:27
问题 I have two Zebra Bluetooth Printers, a MZ220 and iMZ220. The "only" thing I would do, is to print text with a Windows IoT System on a Raspberry Pi 2. Nothing more ;) Example: Line1 " Hello World" Line2 "---------------" Line3 "Date:01.01.2016" Line4 "Time: 18:00" The USB Bluetooth Adapter BTA-403 from ORICO, I guess works well. With the Explorer I can connect to the Printer. But, what next? How do I connect to the Printer? How do I say to the Printer print "Hello World!" Thanks! 回答1: These

Convert image to GRF format

情到浓时终转凉″ 提交于 2019-12-02 02:08:09
I have a Zebra Gk420t printer that allows me to make stickers and I need to print an image on them. I read that the images must be in GRF format (pure hex). Someone knows how can I convert the images to GRF format in Linux? I read about Ztools software on Windows, but nothing interesting on Linux... Zebra provides a Java API that can convert graphics to GRF. You can use the command line interface to convert images to GRF like so : java -jar ZSDK_API.jar graphic myImage.jpeg -s myConvertedImage.GRF Someone knows how can I convert the images to GRP format in Linux? You're over-thinking this.

Why would a Zebra QLn220 Printer ignore the first couple of commands sent to it after sending it a command to update some settings?

人盡茶涼 提交于 2019-12-02 01:03:49
问题 I am sending commands to a Zebra QLn220 for it to print labels (naturally). I also have code, though, that assigns values to certain printer settings, such as: const string quote = "\""; string keepPrinterOn = string.Format("! U1 setvar {0}power.dtr_power_off{0} {0}off{0}", quote); string advanceToBlackBar = string.Format("! U1 setvar {0}media.sense_mode{0} {0}bar{0}", quote); string advanceToGap = string.Format("! U1 setvar {0}media.sense_mode{0} {0}gap{0}", quote); PrintUtils