-
Notifications
You must be signed in to change notification settings - Fork 57
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Unnecessary space from top of the barcode slip #16
Comments
It looks like an alignment issue. Please refer to this CPCL Manual for the details of the commands used in the label format script. |
surely I go through this CPCL document, but i am not getting actual result yet.
|
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
While printing the lines over barcode slips
we are getting unnecessary margin or space from the top.
"! 0 200 200 210 1" + "\r\n"//set the height of the bitmap and the quantity to print
+ "TONE 50" + "\r\n"//print intensity tone 0-200
// + "CENTER" + "\r\n"//print speed (less = more accurate) 1 2.5cm/s | 2 - 5cm/s | 3 - 7.6cm/s*/
+ "TEXT 7 0 0 100 " + firstLine.toStrin
g() + "\r\n"
+ "COUNT 1"+ "\r\n"//print speed (less = more accurate) 1 2.5cm/s | 2 - 5cm/s | 3 - 7.6cm/s
+ "TEXT 7 0 0 100 " + barcode + "\r\n"
+ "COUNT -10" + "\r\n"
+ "B 128 1 1 50 20 66 " + barcode + "\r\n"
+ "COUNT -10" + "\r\n"//get the image we stored before in the printer
+ "TEXT 7 0 0 100 " + secondLine.toString() + "\r\n"
+ "COUNT -10"+ "\r\n"//get the image we stored before in the printer
+ "TEXT 7 0 0 100 " + thirdLine.toString() + "\r\n"
+ "COUNT -10"+ "\r\n"//get the image we stored before in the printer
+ "TEXT 7 0 100 " + fourthLine.toString() + "\r\n"//get the image we stored before in the printer
The text was updated successfully, but these errors were encountered: