Does your app use the Link-OS™ Multiplatform SDK | Zebra ?
If so, it is probably creating an instance of a ZPL printer rather than CPCL printer since the ZQ520 is considered a ZPL printer.
In ZPL, the label prints in the opposite direction that CPCL would.
To fix the orientation, you can either create an instance of a CPCL printer by specifying CPCL as the PrinterLanguage of your ZebraPrinter instance.
Or you can simply write the following ZPL command to the connection before calling your printImage function:
"^XA^POI^XZ"
1 Replies
Hi Adil,
Does your app use the Link-OS™ Multiplatform SDK | Zebra ?
If so, it is probably creating an instance of a ZPL printer rather than CPCL printer since the ZQ520 is considered a ZPL printer.
In ZPL, the label prints in the opposite direction that CPCL would.
To fix the orientation, you can either create an instance of a CPCL printer by specifying CPCL as the PrinterLanguage of your ZebraPrinter instance.
Or you can simply write the following ZPL command to the connection before calling your printImage function:
"^XA^POI^XZ"
Greg