Methods¶
Note
TODO Merge this page with the API-description. (Make the API-description more pretty and then replace this with the API-description.)
Escpos class¶
Escpos inherits its methods to the printers. the following methods are defined:
image(“image_name.ext”)¶
Prints an image. Its adjust the size in order to print it.
image_name.extis the complete file name and location of any image type (jpg, gif, png, bmp)
Raises ImageSizeError exception.
qr(“text”)¶
Prints a QR code. The size has been adjusted to Version 4, so it can be enough small to be printed but also enough big to be read by a smart phone.
textAny text that needs to be QR encoded. It could be a slogan, salutation, url, etc.
barcode(“code”, “barcode_type”, width, height, “position”, “font”)¶
Prints a barcode.
codeis an alphanumeric code to be printed as bar codebarcode_typemust be one of the following type of codes for function type A:- UPC-A
- UPC-E
- EAN13
- EAN8
- CODE39
- ITF
- NW7
And for function type B:
- Any type above
- CODE93
- CODE128
- GS1-128
- GS1 DataBar Omnidirectional
- GS1 DataBar Truncated
- GS1 DataBar Limited
- GS1 DataBar Expanded
widthis a numeric value in the range between (1,255) Default: 64heightis a numeric value in the range between (2,6) Default: 3positionis where to place the code around the bars, could be one of the following values:- ABOVE
- BELOW
- BOTH
- OFF > Default: BELOW
fontis one of the 2 type of fonts, values could be:- A
- B > Default: A
fuction_typechooses between ESCPOS function type A or B. A is default, B has more barcode options. Choose which one based upon your printer support and require barcode.
- A
- B > Default A
- Raises
BarcodeTypeError,BarcodeSizeError,BarcodeCodeErrorexceptions.
text(“text”)¶
Prints raw text. Raises TextError exception.
set(“align”, “font”, “type”, width, height, invert, smooth, flip)¶
Set text properties.
* align set horizontal position for text, the possible values are:
- CENTER
- LEFT
- RIGHT > > Default: left
fonttype could beAorB. Default: Atypetype could beB(Bold),U(Underline) ornormal. Default: normalwidthis a numeric value, 1 is for regular size, and 2 is twice the standard size. Default: 1heightis a numeric value, 1 is for regular size and 2 is twice the standard size. Default: 1invertis a boolean value, True enables white on black printing. Default: Falsesmoothis a boolean value, True enables text smoothing. Default: Falseflipis a boolean value, True enables upside-down text. Default: False
cut(“mode”)¶
Cut paper.
* mode set a full or partial cut. Default: full
Partial cut is not implemented in all printers.
cashdraw(pin)¶
Sends a pulse to the cash drawer in the specified pin.
pinis a numeric value which defines the pin to be used to send the pulse, it could be 2 or 5. RaisesCashDrawerError()
control(“align”)¶
Carrier feed and tabs.
* align is a string which takes any of the following values:
- LF for Line Feed
- FF for Form Feed
- CR for Carriage Return
- HT for Horizontal Tab
- VT for Vertical Tab