2010-02-26 08:54:46 +00:00
|
|
|
#!/usr/bin/python
|
2014-05-21 05:15:54 +00:00
|
|
|
"""
|
2010-02-26 08:54:46 +00:00
|
|
|
@author: Manuel F Martinez <manpaz@bashlinux.com>
|
|
|
|
@organization: Bashlinux
|
2012-09-24 04:24:45 +00:00
|
|
|
@copyright: Copyright (c) 2012 Bashlinux
|
2015-06-10 23:28:27 +00:00
|
|
|
@license: GNU GPL v3
|
2014-05-21 05:15:54 +00:00
|
|
|
"""
|
2010-02-26 08:54:46 +00:00
|
|
|
|
2015-12-30 21:49:19 +00:00
|
|
|
from PIL import Image, ImageOps
|
2014-02-24 05:10:34 +00:00
|
|
|
|
2014-06-03 10:36:33 +00:00
|
|
|
import struct
|
2013-03-14 08:31:07 +00:00
|
|
|
import qrcode
|
2010-02-26 08:54:46 +00:00
|
|
|
import time
|
2015-06-04 11:57:59 +00:00
|
|
|
import textwrap
|
2015-06-10 01:21:52 +00:00
|
|
|
import binascii
|
2013-02-27 14:10:34 +00:00
|
|
|
import operator
|
2010-02-26 08:54:46 +00:00
|
|
|
|
2015-05-07 18:54:32 +00:00
|
|
|
from .constants import *
|
|
|
|
from .exceptions import *
|
2010-02-26 08:54:46 +00:00
|
|
|
|
2015-11-27 22:10:20 +00:00
|
|
|
from abc import ABCMeta, abstractmethod # abstract base class support
|
|
|
|
|
2015-11-27 20:24:47 +00:00
|
|
|
class Escpos(object):
|
2010-02-26 08:54:46 +00:00
|
|
|
""" ESC/POS Printer object """
|
2015-11-27 22:10:20 +00:00
|
|
|
__metaclass__ = ABCMeta
|
2015-11-27 20:20:12 +00:00
|
|
|
device = None
|
2010-02-26 08:54:46 +00:00
|
|
|
|
|
|
|
|
2015-06-04 11:57:59 +00:00
|
|
|
def __init__(self, columns=32):
|
2015-12-12 16:19:30 +00:00
|
|
|
""" Initialize ESCPOS Printer
|
|
|
|
|
|
|
|
:param columns: Text columns used by the printer. Defaults to 32."""
|
2015-06-04 11:57:59 +00:00
|
|
|
self.columns = columns
|
2010-02-26 08:54:46 +00:00
|
|
|
|
2015-11-27 22:10:20 +00:00
|
|
|
@abstractmethod
|
|
|
|
def _raw(self, msg):
|
|
|
|
""" Sends raw data to the printer
|
|
|
|
|
|
|
|
This function has to be individually implemented by the implementations.
|
|
|
|
:param msg: message string to be sent to the printer
|
|
|
|
"""
|
|
|
|
pass
|
|
|
|
|
2015-11-27 20:20:12 +00:00
|
|
|
@staticmethod
|
|
|
|
def _check_image_size(size):
|
2015-11-27 22:10:20 +00:00
|
|
|
""" Check and fix the size of the image to 32 bits
|
|
|
|
|
|
|
|
:param size: size of the image
|
|
|
|
:returns: tuple of image borders
|
|
|
|
:rtype: (int, int)
|
|
|
|
"""
|
2010-02-26 08:54:46 +00:00
|
|
|
if size % 32 == 0:
|
2015-11-27 20:20:12 +00:00
|
|
|
return 0, 0
|
2010-02-26 08:54:46 +00:00
|
|
|
else:
|
|
|
|
image_border = 32 - (size % 32)
|
|
|
|
if (image_border % 2) == 0:
|
2015-06-04 11:20:17 +00:00
|
|
|
return (round(image_border / 2), round(image_border / 2))
|
2010-02-26 08:54:46 +00:00
|
|
|
else:
|
2015-06-04 11:20:17 +00:00
|
|
|
return (round(image_border / 2), round((image_border / 2) + 1))
|
2010-02-26 08:54:46 +00:00
|
|
|
|
2014-06-03 10:36:33 +00:00
|
|
|
def _print_image(self, imagedata, n_rows, col_bytes):
|
2015-11-27 22:10:20 +00:00
|
|
|
""" Print formatted image
|
|
|
|
|
2014-03-13 17:51:14 +00:00
|
|
|
|
2015-11-27 22:10:20 +00:00
|
|
|
:param line:
|
|
|
|
:param size:
|
|
|
|
"""
|
2010-02-26 08:54:46 +00:00
|
|
|
self._raw(S_RASTER_N)
|
2015-12-30 21:49:19 +00:00
|
|
|
pbuffer = struct.pack('<HH', col_bytes, n_rows)
|
|
|
|
self._raw(pbuffer)
|
2014-06-03 10:36:33 +00:00
|
|
|
self._raw(imagedata)
|
2015-11-27 20:38:59 +00:00
|
|
|
pbuffer = ""
|
2010-02-26 08:54:46 +00:00
|
|
|
|
2014-08-16 00:17:35 +00:00
|
|
|
def fullimage(self, img, max_height=860, width=512, histeq=True, bandsize=255):
|
2013-02-27 14:10:34 +00:00
|
|
|
""" Resizes and prints an arbitrarily sized image """
|
2013-02-27 22:17:56 +00:00
|
|
|
if isinstance(img, Image.Image):
|
2013-02-27 14:10:34 +00:00
|
|
|
im = img.convert("RGB")
|
|
|
|
else:
|
|
|
|
im = Image.open(img).convert("RGB")
|
|
|
|
|
|
|
|
if histeq:
|
|
|
|
# Histogram equaliztion
|
|
|
|
h = im.histogram()
|
|
|
|
lut = []
|
|
|
|
for b in range(0, len(h), 256):
|
|
|
|
# step size
|
2014-05-31 14:05:46 +00:00
|
|
|
step = reduce(operator.add, h[b:b+256]) // 255
|
2013-02-27 14:10:34 +00:00
|
|
|
# create equalization lookup table
|
|
|
|
n = 0
|
|
|
|
for i in range(256):
|
2014-05-31 14:05:46 +00:00
|
|
|
lut.append(n // step)
|
2013-02-27 14:10:34 +00:00
|
|
|
n = n + h[i+b]
|
|
|
|
im = im.point(lut)
|
|
|
|
|
2014-05-22 05:08:58 +00:00
|
|
|
if width:
|
|
|
|
ratio = float(width) / im.size[0]
|
|
|
|
newheight = int(ratio * im.size[1])
|
2013-02-27 14:10:34 +00:00
|
|
|
|
2014-05-22 05:08:58 +00:00
|
|
|
# Resize the image
|
|
|
|
im = im.resize((width, newheight), Image.ANTIALIAS)
|
|
|
|
|
|
|
|
if max_height and im.size[1] > max_height:
|
2013-02-27 14:10:34 +00:00
|
|
|
im = im.crop((0, 0, im.size[0], max_height))
|
2013-08-22 15:16:57 +00:00
|
|
|
|
2013-02-27 14:10:34 +00:00
|
|
|
# Divide into bands
|
|
|
|
current = 0
|
|
|
|
while current < im.size[1]:
|
2014-05-22 05:08:58 +00:00
|
|
|
self.image(im.crop((0, current, width or im.size[0],
|
|
|
|
min(im.size[1], current + bandsize))))
|
2013-02-27 14:10:34 +00:00
|
|
|
current += bandsize
|
|
|
|
|
2014-06-03 10:36:33 +00:00
|
|
|
def image(self, im):
|
2013-08-22 15:16:57 +00:00
|
|
|
""" Parse image and prepare it to a printable format """
|
|
|
|
pixels = []
|
2010-02-26 08:54:46 +00:00
|
|
|
pix_line = ""
|
2015-11-27 20:20:12 +00:00
|
|
|
im_left = ""
|
2010-02-26 08:54:46 +00:00
|
|
|
im_right = ""
|
2013-08-22 15:16:57 +00:00
|
|
|
switch = 0
|
|
|
|
img_size = [ 0, 0 ]
|
2010-02-26 08:54:46 +00:00
|
|
|
|
2014-06-03 10:36:33 +00:00
|
|
|
if not isinstance(im, Image.Image):
|
|
|
|
im = Image.open(im)
|
2010-02-26 08:54:46 +00:00
|
|
|
|
2014-06-03 10:36:33 +00:00
|
|
|
im = im.convert("L")
|
|
|
|
im = ImageOps.invert(im)
|
|
|
|
im = im.convert("1")
|
2015-08-22 19:43:09 +00:00
|
|
|
|
2014-06-03 10:36:33 +00:00
|
|
|
if im.size[0] > 640:
|
|
|
|
print("WARNING: Image is wider than 640 and could be truncated at print time ")
|
|
|
|
if im.size[1] > 640:
|
2013-08-22 15:16:57 +00:00
|
|
|
raise ImageSizeError()
|
2014-06-03 10:36:33 +00:00
|
|
|
|
|
|
|
orig_width, height = im.size
|
|
|
|
width = ((orig_width + 31) // 32) * 32
|
|
|
|
new_image = Image.new("1", (width, height))
|
|
|
|
new_image.paste(im, (0, 0, orig_width, height))
|
2015-08-22 19:43:09 +00:00
|
|
|
|
2014-06-03 10:36:33 +00:00
|
|
|
the_bytes = new_image.tobytes()
|
|
|
|
self._print_image(the_bytes, n_rows=height, col_bytes=width//8)
|
2013-03-14 08:31:07 +00:00
|
|
|
|
2015-06-10 01:21:52 +00:00
|
|
|
def direct_image(self, image):
|
|
|
|
""" Send image to printer"""
|
|
|
|
mask = 0x80
|
|
|
|
i = 0
|
|
|
|
temp = 0
|
|
|
|
|
|
|
|
(width, height) = image.size
|
|
|
|
self._raw(S_RASTER_N)
|
|
|
|
headerX = int(width / 8)
|
|
|
|
headerY = height
|
|
|
|
buf = "%02X" % (headerX & 0xff)
|
|
|
|
buf += "%02X" % ((headerX >> 8) & 0xff)
|
|
|
|
buf += "%02X" % (headerY & 0xff)
|
|
|
|
buf += "%02X" % ((headerY >> 8) & 0xff)
|
|
|
|
#self._raw(binascii.unhexlify(buf))
|
|
|
|
for y in range(height):
|
|
|
|
for x in range(width):
|
|
|
|
value = image.getpixel((x,y))
|
|
|
|
value = (value << 8) | value;
|
|
|
|
if value == 0:
|
|
|
|
temp |= mask
|
|
|
|
|
|
|
|
mask = mask >> 1
|
|
|
|
|
|
|
|
i += 1
|
|
|
|
if i == 8:
|
|
|
|
buf += ("%02X" % temp)
|
|
|
|
mask = 0x80
|
|
|
|
i = 0
|
|
|
|
temp = 0
|
2015-06-26 00:12:30 +00:00
|
|
|
self._raw(binascii.unhexlify(bytes(buf, "ascii")))
|
2015-08-27 21:20:53 +00:00
|
|
|
self._raw('\n')
|
2015-06-10 01:21:52 +00:00
|
|
|
|
2015-12-30 21:49:19 +00:00
|
|
|
def qr(self, text, error_correction=qrcode.constants.ERROR_CORRECT_M):
|
2015-11-27 22:10:20 +00:00
|
|
|
""" Print QR Code for the provided string
|
2013-03-14 08:31:07 +00:00
|
|
|
|
2015-11-27 22:10:20 +00:00
|
|
|
:param text: text to generate a QR-Code from
|
|
|
|
"""
|
2015-12-30 21:49:19 +00:00
|
|
|
qr_code = qrcode.QRCode(version=4, box_size=4, border=1, error_correction=error_correction)
|
2013-03-14 08:34:48 +00:00
|
|
|
qr_code.add_data(text)
|
|
|
|
qr_code.make(fit=True)
|
|
|
|
qr_img = qr_code.make_image()
|
|
|
|
# Convert the RGB image in printable image
|
2014-06-03 10:36:33 +00:00
|
|
|
im = qr_img._img.convert("1")
|
|
|
|
width = im.size[0]
|
|
|
|
height = im.size[1]
|
|
|
|
while width * 2 <= 640:
|
|
|
|
width *= 2
|
|
|
|
height *= 2
|
|
|
|
|
|
|
|
im = im.resize((width, height))
|
2014-03-13 17:58:55 +00:00
|
|
|
self.image(im)
|
2014-05-22 05:41:02 +00:00
|
|
|
self.text('\n')
|
2013-03-14 08:31:07 +00:00
|
|
|
|
2015-11-27 20:20:12 +00:00
|
|
|
def charcode(self, code):
|
2015-11-27 22:10:20 +00:00
|
|
|
""" Set Character Code Table
|
|
|
|
|
|
|
|
Sends the control sequence from constants.py to the printer with :py:meth:`escpos.printer._raw()`.
|
2013-03-14 08:31:07 +00:00
|
|
|
|
2015-11-27 22:10:20 +00:00
|
|
|
:param code: Name of CharCode
|
|
|
|
:raises: CharCodeError
|
|
|
|
"""
|
2014-05-21 05:15:54 +00:00
|
|
|
if code.upper() == "USA":
|
|
|
|
self._raw(CHARCODE_PC437)
|
|
|
|
elif code.upper() == "JIS":
|
|
|
|
self._raw(CHARCODE_JIS)
|
|
|
|
elif code.upper() == "MULTILINGUAL":
|
|
|
|
self._raw(CHARCODE_PC850)
|
|
|
|
elif code.upper() == "PORTUGUESE":
|
|
|
|
self._raw(CHARCODE_PC860)
|
|
|
|
elif code.upper() == "CA_FRENCH":
|
|
|
|
self._raw(CHARCODE_PC863)
|
|
|
|
elif code.upper() == "NORDIC":
|
|
|
|
self._raw(CHARCODE_PC865)
|
|
|
|
elif code.upper() == "WEST_EUROPE":
|
|
|
|
self._raw(CHARCODE_WEU)
|
|
|
|
elif code.upper() == "GREEK":
|
|
|
|
self._raw(CHARCODE_GREEK)
|
|
|
|
elif code.upper() == "HEBREW":
|
|
|
|
self._raw(CHARCODE_HEBREW)
|
2015-11-27 22:10:20 +00:00
|
|
|
# elif code.upper() == "LATVIAN": # this is not listed in the constants
|
|
|
|
# self._raw(CHARCODE_PC755)
|
2014-05-21 05:15:54 +00:00
|
|
|
elif code.upper() == "WPC1252":
|
|
|
|
self._raw(CHARCODE_PC1252)
|
|
|
|
elif code.upper() == "CIRILLIC2":
|
|
|
|
self._raw(CHARCODE_PC866)
|
|
|
|
elif code.upper() == "LATIN2":
|
|
|
|
self._raw(CHARCODE_PC852)
|
|
|
|
elif code.upper() == "EURO":
|
|
|
|
self._raw(CHARCODE_PC858)
|
|
|
|
elif code.upper() == "THAI42":
|
|
|
|
self._raw(CHARCODE_THAI42)
|
|
|
|
elif code.upper() == "THAI11":
|
|
|
|
self._raw(CHARCODE_THAI11)
|
|
|
|
elif code.upper() == "THAI13":
|
|
|
|
self._raw(CHARCODE_THAI13)
|
|
|
|
elif code.upper() == "THAI14":
|
|
|
|
self._raw(CHARCODE_THAI14)
|
|
|
|
elif code.upper() == "THAI16":
|
|
|
|
self._raw(CHARCODE_THAI16)
|
|
|
|
elif code.upper() == "THAI17":
|
|
|
|
self._raw(CHARCODE_THAI17)
|
|
|
|
elif code.upper() == "THAI18":
|
|
|
|
self._raw(CHARCODE_THAI18)
|
|
|
|
else:
|
2015-04-20 09:58:04 +00:00
|
|
|
raise CharCodeError()
|
2014-05-21 05:15:54 +00:00
|
|
|
|
2010-02-26 08:54:46 +00:00
|
|
|
def barcode(self, code, bc, width, height, pos, font):
|
2015-11-27 22:10:20 +00:00
|
|
|
""" Print Barcode
|
|
|
|
|
|
|
|
:param code: data for barcode
|
|
|
|
:param bc: barcode format, see constants.py
|
|
|
|
:param width: barcode width, has to be between 1 and 255
|
|
|
|
:param height: barcode height, has to be between 2 and 6
|
|
|
|
:param pos: position of text in barcode, default when nothing supplied is below
|
|
|
|
:param font: select font, default is font A
|
|
|
|
:raises: BarcodeSizeError, BarcodeTypeError, BarcodeCodeError
|
|
|
|
"""
|
2010-02-26 08:54:46 +00:00
|
|
|
# Align Bar Code()
|
|
|
|
self._raw(TXT_ALIGN_CT)
|
|
|
|
# Height
|
2015-11-27 20:20:12 +00:00
|
|
|
if height >= 2 or height <= 6:
|
2010-02-26 08:54:46 +00:00
|
|
|
self._raw(BARCODE_HEIGHT)
|
|
|
|
else:
|
|
|
|
raise BarcodeSizeError()
|
|
|
|
# Width
|
2015-11-27 20:20:12 +00:00
|
|
|
if width >= 1 or width <= 255:
|
2010-02-26 08:54:46 +00:00
|
|
|
self._raw(BARCODE_WIDTH)
|
|
|
|
else:
|
|
|
|
raise BarcodeSizeError()
|
|
|
|
# Font
|
|
|
|
if font.upper() == "B":
|
|
|
|
self._raw(BARCODE_FONT_B)
|
2013-08-22 15:16:57 +00:00
|
|
|
else: # DEFAULT FONT: A
|
2010-02-26 08:54:46 +00:00
|
|
|
self._raw(BARCODE_FONT_A)
|
|
|
|
# Position
|
|
|
|
if pos.upper() == "OFF":
|
|
|
|
self._raw(BARCODE_TXT_OFF)
|
|
|
|
elif pos.upper() == "BOTH":
|
|
|
|
self._raw(BARCODE_TXT_BTH)
|
|
|
|
elif pos.upper() == "ABOVE":
|
|
|
|
self._raw(BARCODE_TXT_ABV)
|
2015-06-04 11:57:59 +00:00
|
|
|
else: # DEFAULT POSITION: BELOW
|
2010-02-26 08:54:46 +00:00
|
|
|
self._raw(BARCODE_TXT_BLW)
|
2015-06-04 11:57:59 +00:00
|
|
|
# Type
|
2010-02-26 08:54:46 +00:00
|
|
|
if bc.upper() == "UPC-A":
|
|
|
|
self._raw(BARCODE_UPC_A)
|
|
|
|
elif bc.upper() == "UPC-E":
|
|
|
|
self._raw(BARCODE_UPC_E)
|
|
|
|
elif bc.upper() == "EAN13":
|
|
|
|
self._raw(BARCODE_EAN13)
|
|
|
|
elif bc.upper() == "EAN8":
|
|
|
|
self._raw(BARCODE_EAN8)
|
|
|
|
elif bc.upper() == "CODE39":
|
|
|
|
self._raw(BARCODE_CODE39)
|
|
|
|
elif bc.upper() == "ITF":
|
|
|
|
self._raw(BARCODE_ITF)
|
2014-05-22 04:48:24 +00:00
|
|
|
elif bc.upper() in ("NW7", "CODABAR"):
|
2010-02-26 08:54:46 +00:00
|
|
|
self._raw(BARCODE_NW7)
|
|
|
|
else:
|
|
|
|
raise BarcodeTypeError()
|
|
|
|
# Print Code
|
|
|
|
if code:
|
|
|
|
self._raw(code)
|
|
|
|
else:
|
2015-11-27 20:20:12 +00:00
|
|
|
raise BarcodeCodeError()
|
2015-06-04 11:57:59 +00:00
|
|
|
|
2010-02-26 08:54:46 +00:00
|
|
|
def text(self, txt):
|
2015-11-27 22:10:20 +00:00
|
|
|
""" Print alpha-numeric text
|
|
|
|
|
|
|
|
The text has to be encoded in the currently selected codepage.
|
|
|
|
:param txt: text to be printed
|
|
|
|
:raises: TextError
|
|
|
|
"""
|
2010-02-26 08:54:46 +00:00
|
|
|
if txt:
|
|
|
|
self._raw(txt)
|
|
|
|
else:
|
|
|
|
raise TextError()
|
|
|
|
|
2015-06-04 11:57:59 +00:00
|
|
|
def block_text(self, txt, columns=None):
|
|
|
|
'''Text is printed wrapped to specified columns'''
|
|
|
|
colCount = self.columns if columns == None else columns
|
|
|
|
self.text(textwrap.fill(txt, colCount))
|
2010-02-26 08:54:46 +00:00
|
|
|
|
2015-11-27 20:38:59 +00:00
|
|
|
def set(self, align='left', font='a', text_type='normal', width=1, height=1, density=9):
|
2015-11-27 22:10:20 +00:00
|
|
|
""" Set text properties by sending them to the printer
|
|
|
|
|
|
|
|
:param align: alignment of text
|
|
|
|
:param font: font A or B
|
|
|
|
:param text_type: add bold or underlined
|
|
|
|
:param width: text width, normal or double width
|
|
|
|
:param height: text height, normal or double height
|
|
|
|
:param density: print density
|
|
|
|
"""
|
2013-05-30 15:47:30 +00:00
|
|
|
# Width
|
2014-05-21 05:15:54 +00:00
|
|
|
if height == 2 and width == 2:
|
2014-05-21 05:43:40 +00:00
|
|
|
self._raw(TXT_NORMAL)
|
|
|
|
self._raw(TXT_4SQUARE)
|
2014-05-21 05:15:54 +00:00
|
|
|
elif height == 2 and width != 2:
|
2013-05-30 15:47:30 +00:00
|
|
|
self._raw(TXT_NORMAL)
|
|
|
|
self._raw(TXT_2HEIGHT)
|
2014-05-21 05:15:54 +00:00
|
|
|
elif width == 2 and height != 2:
|
|
|
|
self._raw(TXT_NORMAL)
|
2013-05-30 15:47:30 +00:00
|
|
|
self._raw(TXT_2WIDTH)
|
2015-11-27 20:20:12 +00:00
|
|
|
else: # DEFAULT SIZE: NORMAL
|
2014-05-21 05:15:54 +00:00
|
|
|
self._raw(TXT_NORMAL)
|
2010-02-26 08:54:46 +00:00
|
|
|
# Type
|
2015-11-27 20:38:59 +00:00
|
|
|
if text_type.upper() == "B":
|
2010-02-26 08:54:46 +00:00
|
|
|
self._raw(TXT_BOLD_ON)
|
|
|
|
self._raw(TXT_UNDERL_OFF)
|
2015-11-27 20:38:59 +00:00
|
|
|
elif text_type.upper() == "U":
|
2010-02-26 08:54:46 +00:00
|
|
|
self._raw(TXT_BOLD_OFF)
|
|
|
|
self._raw(TXT_UNDERL_ON)
|
2015-11-27 20:38:59 +00:00
|
|
|
elif text_type.upper() == "U2":
|
2010-02-26 08:54:46 +00:00
|
|
|
self._raw(TXT_BOLD_OFF)
|
|
|
|
self._raw(TXT_UNDERL2_ON)
|
2015-11-27 20:38:59 +00:00
|
|
|
elif text_type.upper() == "BU":
|
2010-02-26 08:54:46 +00:00
|
|
|
self._raw(TXT_BOLD_ON)
|
|
|
|
self._raw(TXT_UNDERL_ON)
|
2015-11-27 20:38:59 +00:00
|
|
|
elif text_type.upper() == "BU2":
|
2010-02-26 08:54:46 +00:00
|
|
|
self._raw(TXT_BOLD_ON)
|
|
|
|
self._raw(TXT_UNDERL2_ON)
|
2015-11-27 20:38:59 +00:00
|
|
|
elif text_type.upper == "NORMAL":
|
2010-02-26 08:54:46 +00:00
|
|
|
self._raw(TXT_BOLD_OFF)
|
|
|
|
self._raw(TXT_UNDERL_OFF)
|
2013-05-30 15:47:30 +00:00
|
|
|
# Font
|
|
|
|
if font.upper() == "B":
|
|
|
|
self._raw(TXT_FONT_B)
|
|
|
|
else: # DEFAULT FONT: A
|
|
|
|
self._raw(TXT_FONT_A)
|
|
|
|
# Align
|
|
|
|
if align.upper() == "CENTER":
|
|
|
|
self._raw(TXT_ALIGN_CT)
|
|
|
|
elif align.upper() == "RIGHT":
|
|
|
|
self._raw(TXT_ALIGN_RT)
|
|
|
|
elif align.upper() == "LEFT":
|
|
|
|
self._raw(TXT_ALIGN_LT)
|
2014-05-21 05:31:49 +00:00
|
|
|
# Density
|
|
|
|
if density == 0:
|
|
|
|
self._raw(PD_N50)
|
|
|
|
elif density == 1:
|
|
|
|
self._raw(PD_N37)
|
|
|
|
elif density == 2:
|
|
|
|
self._raw(PD_N25)
|
|
|
|
elif density == 3:
|
|
|
|
self._raw(PD_N12)
|
|
|
|
elif density == 4:
|
|
|
|
self._raw(PD_0)
|
|
|
|
elif density == 5:
|
|
|
|
self._raw(PD_P12)
|
|
|
|
elif density == 6:
|
|
|
|
self._raw(PD_P25)
|
|
|
|
elif density == 7:
|
|
|
|
self._raw(PD_P37)
|
|
|
|
elif density == 8:
|
|
|
|
self._raw(PD_P50)
|
2015-11-27 20:20:12 +00:00
|
|
|
else: # DEFAULT: DOES NOTHING
|
2014-05-21 05:31:49 +00:00
|
|
|
pass
|
2010-02-26 08:54:46 +00:00
|
|
|
|
|
|
|
def cut(self, mode=''):
|
2015-11-27 22:10:20 +00:00
|
|
|
""" Cut paper
|
|
|
|
|
|
|
|
:param mode: set to 'PART' for a partial cut
|
|
|
|
"""
|
2010-02-26 08:54:46 +00:00
|
|
|
# Fix the size between last line and cut
|
|
|
|
# TODO: handle this with a line feed
|
|
|
|
self._raw("\n\n\n\n\n\n")
|
|
|
|
if mode.upper() == "PART":
|
|
|
|
self._raw(PAPER_PART_CUT)
|
2013-08-22 15:16:57 +00:00
|
|
|
else: # DEFAULT MODE: FULL CUT
|
2010-02-26 08:54:46 +00:00
|
|
|
self._raw(PAPER_FULL_CUT)
|
|
|
|
|
|
|
|
def cashdraw(self, pin):
|
2015-11-27 22:10:20 +00:00
|
|
|
""" Send pulse to kick the cash drawer
|
|
|
|
|
|
|
|
Kick cash drawer on pin 2 or pin 5.
|
|
|
|
:param pin: pin number
|
|
|
|
:raises: CashDrawerError
|
|
|
|
"""
|
2010-02-26 08:54:46 +00:00
|
|
|
if pin == 2:
|
|
|
|
self._raw(CD_KICK_2)
|
|
|
|
elif pin == 5:
|
|
|
|
self._raw(CD_KICK_5)
|
|
|
|
else:
|
|
|
|
raise CashDrawerError()
|
|
|
|
|
|
|
|
def hw(self, hw):
|
2015-11-27 22:10:20 +00:00
|
|
|
""" Hardware operations
|
|
|
|
|
|
|
|
:param hw: hardware action
|
|
|
|
"""
|
2010-02-26 08:54:46 +00:00
|
|
|
if hw.upper() == "INIT":
|
|
|
|
self._raw(HW_INIT)
|
|
|
|
elif hw.upper() == "SELECT":
|
|
|
|
self._raw(HW_SELECT)
|
|
|
|
elif hw.upper() == "RESET":
|
|
|
|
self._raw(HW_RESET)
|
2013-08-22 15:16:57 +00:00
|
|
|
else: # DEFAULT: DOES NOTHING
|
2010-02-26 08:54:46 +00:00
|
|
|
pass
|
|
|
|
|
2014-05-21 05:15:54 +00:00
|
|
|
def control(self, ctl, pos=4):
|
2015-11-27 22:10:20 +00:00
|
|
|
""" Feed control sequences
|
|
|
|
|
|
|
|
:raises: TabPosError
|
|
|
|
"""
|
2014-05-21 05:15:54 +00:00
|
|
|
# Set tab positions
|
|
|
|
if pos < 1 or pos > 16:
|
2015-11-27 22:10:20 +00:00
|
|
|
raise TabPosError()
|
2014-05-21 05:15:54 +00:00
|
|
|
else:
|
2015-11-27 20:20:12 +00:00
|
|
|
self._raw("".join([CTL_SET_HT, hex(pos)]))
|
2014-05-21 05:15:54 +00:00
|
|
|
# Set position
|
2010-02-26 08:54:46 +00:00
|
|
|
if ctl.upper() == "LF":
|
|
|
|
self._raw(CTL_LF)
|
|
|
|
elif ctl.upper() == "FF":
|
|
|
|
self._raw(CTL_FF)
|
|
|
|
elif ctl.upper() == "CR":
|
|
|
|
self._raw(CTL_CR)
|
|
|
|
elif ctl.upper() == "HT":
|
|
|
|
self._raw(CTL_HT)
|
|
|
|
elif ctl.upper() == "VT":
|
2012-11-15 17:20:16 +00:00
|
|
|
self._raw(CTL_VT)
|