My thorough research on the web provided me with a couple of ideas, but none of them seem to work correctly in my particular use case. Here is what I have:
1) Zebra
When printing to a Zebra printer, everything before ^XA
and after ^XZ
is ignored. The html tags around the zpl don't interfere.
The only thing you must ensure is that you print RAW text to the printer.
Use the build in windows Generic / Text Only
driver for your Zebra printer. Instead of the zebra driver.
Example on jsfiddle or on gist.run
function printZpl(zpl) {
var printWindow = window.open();
printWindow.document.open('text/plain')
printWindow.document.write(zpl);
printWindow.document.close();
printWindow.focus();
printWindow.print();
printWindow.close();
}
Tested in
Not working in:
Select the Generic / Text Only driver in your printer properties:
Zebra created an application called (BROWSER PRINT) they released April 2016. It appears to be a local JAVA service that runs on your computer and exposes a pseudo rest api. They provide a javascript api to hide the details and simplify usage.
Currently supports (ZD500, ZD410, LP2824+, ZT230, ZT420, QLn320, GX420)
It allows you to select the printer if there are multiple. Also allows 2 way communication where you can ask the printer it's status and get the result. They recently added support for printers connected to Ethernet but do not support printers mapped via Windows UNC path.
https://www.zebra.com/us/en/products/software/barcode-printers/link-os/browser-print.html
Following snippet worked for me on Firefox and IE11, with a little change to printer's properties.
I was using this printer emulator.
In Chrome I get error from emulator when printing from Chrome's Print Dialog. Using system dialog gives error about printing failure from Chrome. CTRL + SHIFT + P(shortcut to skip Chrome dialog) no error and nothing happens. All these errors may be related to emulator, but I don't have real printer to test it.
In Printer's Properties I set following options:
${
}$
As you can see in script below ZPL code is wrapped in '${'
and '}$'
<script type="text/javascript">
function openWin() {
var printWindow = window.open();
printWindow.document.open('text/plain')
printWindow.document.write('${^XA^FO50,100^BXN,10,200^FDYourTextHere^FS^XZ}$');
printWindow.document.close();
printWindow.focus();
printWindow.print();
}
</script>
<input type="button" value="Print code" onclick="openWin()" />
JSFiddle
If you want to accomplish this consistently without involving the opening of popups or user prompts, you are going to need an application running on the client PC to act as mediator between your application's javascript and the client's printer.
One popular way of doing this is via a browser plugin (NPAPI). But this approach is quickly becoming obsolete as many browsers have begun to remove NPAPI support entirely (Chrome, Firefox).
Another approach is to develop a small application that runs on your client's PC which listens for websocket connections. Your web application will send the ZPL through a connection to the client's websocket server, which in turn will generate a print job.
A third approach - some printers have an internal IP address that can be sent raw ZPL. If you build your web application so that a user can configure this IP address, it would be an option to send the ZPL to that address. However, this won't work if your users are using printers that don't support this functionality.
You see, the main problem here is that the Zebra commands will only work if you can send the raw, unmodified bytes directly to the printer port; the browser won't allow you to do that, unfortunately.
You will need some way to get such direct acess: