Skip to content

Instantly share code, notes, and snippets.

@Lakerfield
Last active January 11, 2024 15:36
Show Gist options
  • Star 14 You must be signed in to star a gist
  • Fork 5 You must be signed in to fork a gist
  • Save Lakerfield/1b77b03789525c9d0f13ddfeedee2efa to your computer and use it in GitHub Desktop.
Save Lakerfield/1b77b03789525c9d0f13ddfeedee2efa to your computer and use it in GitHub Desktop.
Print ZPL from browser
<!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>
@tresf
Copy link

tresf commented Jan 11, 2024

@nxp2910 i tried the one which u suggested but not worked could please add some suggestion

Hey, sorry for the spammy reply, but QZ Tray (open source) can do this if you're interested and works with all Zebra printers, even the older ones. Full disclaimer, I'm the author of QZ Tray. 🍻

Other solutions include PrintNode (open source) and Neodynamic (closed source).

Best of luck!

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment