We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Hello! I've had the following issues when using Bematech MP-4200TH:
Steps to reproduce:
Use the following code to print to a Bematech MP-4200TH The result should look like the image above (the one with Issue written in it)
from pyescpos.conn.win32 import Win32Raw as Connection from pyescpos import barcode from pyescpos.impl.bematech import MP4200TH conn = Connection.create('MP-4200 TH') # printer name (on windows 10) impressora = MP4200TH(conn) impressora.init() impressora.text("Hello World! 1\nLine") impressora.lf() impressora.set_condensed(1) impressora.text("Hello World! condensed\nLine") impressora.set_condensed(0) impressora.lf() impressora.set_expanded(1) impressora.text("Hello World! expanded\nLine") impressora.set_expanded(0) impressora.lf() impressora.code128( '0123456789', barcode_height=96, barcode_width=barcode.BARCODE_DOUBLE_WIDTH, barcode_hri=barcode.BARCODE_HRI_BOTTOM ) impressora.lf() impressora.ean13( '4007817525074', barcode_height=120, barcode_width=barcode.BARCODE_NORMAL_WIDTH, barcode_hri=barcode.BARCODE_HRI_TOP ) impressora.cut()
Printer used:
The text was updated successfully, but these errors were encountered:
Successfully merging a pull request may close this issue.
Hello! I've had the following issues when using Bematech MP-4200TH:
Steps to reproduce:
Use the following code to print to a Bematech MP-4200TH
The result should look like the image above (the one with Issue written in it)
Printer used:
The text was updated successfully, but these errors were encountered: