I am trying to print a shortcut from an Android application to a Zebra printer (iMZ 320), but it does not seem to understand my command line.
When I try to run this sample code, the printer prints all the commands on paper when I send them to the printer:
zebraPrinterConnection.write("^XA^FO50,50^ADN,36,20^FDHELLO^FS^XZ".getBytes());
I read the ZPL programming tutorial from the official Zebra website, but I cannot figure out how to make my printer suitable with the ZPL commands.
source
share