-
-
Save ihussain1024/86fb5bcc7cae955404c8091d52628bdb to your computer and use it in GitHub Desktop.
Print ZPL from browser
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!doctype html> | |
<html lang="en"> | |
<head> | |
<title>Print ZPL from browser</title> | |
</head> | |
<body> | |
<h1>Test page for print ZPL from browser!</h1> | |
<script type="text/javascript"> | |
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(); | |
} | |
</script> | |
</body> | |
<input type="button" value="Print zpl" onclick="printZpl(document.getElementById('zplcode').value)" /><br/> | |
<textarea id="zplcode" cols="40" rows="20">^XA | |
^FXTest ZPL^FS | |
^FO50,100 | |
^A0N,89^FDHello ZPL^FS | |
^XZ | |
</textarea> | |
<p>Use the build in windows [Generic / Text Only] driver for your Zebra printer. Instead of the zebra driver. </p> | |
<p>Tested in: <b>Edge, Internet Explorer, Firefox</b></p> | |
<p>Not working in: Chrome (Chrome prints as image and not in text)</p> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment