ADD inverted printing to set method
This commit is contained in:
parent
8000cf258b
commit
7c98de6727
|
@ -65,8 +65,8 @@ text("text")
|
||||||
|
|
||||||
Prints raw text. Raises ``TextError`` exception.
|
Prints raw text. Raises ``TextError`` exception.
|
||||||
|
|
||||||
set("align", "font", "type", width, height)
|
set("align", "font", "type", width, height, invert)
|
||||||
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
||||||
|
|
||||||
Set text properties.
|
Set text properties.
|
||||||
* ``align`` set horizontal position for text, the possible values are:
|
* ``align`` set horizontal position for text, the possible values are:
|
||||||
|
@ -79,6 +79,7 @@ Set text properties.
|
||||||
* ``type`` type could be ``B`` (Bold), ``U`` (Underline) or ``normal``. *Default:* normal
|
* ``type`` type could be ``B`` (Bold), ``U`` (Underline) or ``normal``. *Default:* normal
|
||||||
* ``width`` is a numeric value, 1 is for regular size, and 2 is twice the standard size. *Default*: 1
|
* ``width`` is a numeric value, 1 is for regular size, and 2 is twice the standard size. *Default*: 1
|
||||||
* ``height`` is a numeric value, 1 is for regular size and 2 is twice the standard size. *Default*: 1
|
* ``height`` is a numeric value, 1 is for regular size and 2 is twice the standard size. *Default*: 1
|
||||||
|
* ``invert`` is a boolean value, True enables white on black printing. *Default*: False
|
||||||
|
|
||||||
cut("mode")
|
cut("mode")
|
||||||
^^^^^^^^^^^
|
^^^^^^^^^^^
|
||||||
|
|
|
@ -64,6 +64,8 @@ TXT_FONT_B = ESC + '\x4d\x01' # Font type B
|
||||||
TXT_ALIGN_LT = ESC + '\x61\x00' # Left justification
|
TXT_ALIGN_LT = ESC + '\x61\x00' # Left justification
|
||||||
TXT_ALIGN_CT = ESC + '\x61\x01' # Centering
|
TXT_ALIGN_CT = ESC + '\x61\x01' # Centering
|
||||||
TXT_ALIGN_RT = ESC + '\x61\x02' # Right justification
|
TXT_ALIGN_RT = ESC + '\x61\x02' # Right justification
|
||||||
|
TXT_INVERT_ON = GS + '\x42\x01' # Inverse Printing ON
|
||||||
|
TXT_INVERT_OFF = GS + '\x42\x00' # Inverse Printing OFF
|
||||||
|
|
||||||
# Char code table
|
# Char code table
|
||||||
CHARCODE_PC437 = ESC + '\x74\x00' # USA: Standard Europe
|
CHARCODE_PC437 = ESC + '\x74\x00' # USA: Standard Europe
|
||||||
|
|
|
@ -451,7 +451,7 @@ class Escpos(object):
|
||||||
colCount = self.columns if columns is None else columns
|
colCount = self.columns if columns is None else columns
|
||||||
self.text(textwrap.fill(txt, colCount))
|
self.text(textwrap.fill(txt, colCount))
|
||||||
|
|
||||||
def set(self, align='left', font='a', text_type='normal', width=1, height=1, density=9):
|
def set(self, align='left', font='a', text_type='normal', width=1, height=1, density=9, invert=False):
|
||||||
""" Set text properties by sending them to the printer
|
""" Set text properties by sending them to the printer
|
||||||
|
|
||||||
:param align: horizontal position for text, possible values are:
|
:param align: horizontal position for text, possible values are:
|
||||||
|
@ -476,6 +476,8 @@ class Escpos(object):
|
||||||
:param width: text width, normal (1) or double width (2), *default*: 1
|
:param width: text width, normal (1) or double width (2), *default*: 1
|
||||||
:param height: text height, normal (1) or double height (2), *default*: 1
|
:param height: text height, normal (1) or double height (2), *default*: 1
|
||||||
:param density: print density, value from 0-8, if something else is supplied the density remains unchanged
|
:param density: print density, value from 0-8, if something else is supplied the density remains unchanged
|
||||||
|
:param invert: True enables white on black printing, *default*: False
|
||||||
|
:type invert: bool
|
||||||
"""
|
"""
|
||||||
# Width
|
# Width
|
||||||
if height == 2 and width == 2:
|
if height == 2 and width == 2:
|
||||||
|
@ -541,6 +543,11 @@ class Escpos(object):
|
||||||
self._raw(PD_P50)
|
self._raw(PD_P50)
|
||||||
else: # DEFAULT: DOES NOTHING
|
else: # DEFAULT: DOES NOTHING
|
||||||
pass
|
pass
|
||||||
|
# Invert Printing
|
||||||
|
if invert:
|
||||||
|
self._raw(TXT_INVERT_ON)
|
||||||
|
else:
|
||||||
|
self._raw(TXT_INVERT_OFF)
|
||||||
|
|
||||||
def cut(self, mode=''):
|
def cut(self, mode=''):
|
||||||
""" Cut paper.
|
""" Cut paper.
|
||||||
|
|
Loading…
Reference in New Issue