Mercurial > hg > zebra
annotate README @ 5:639d9699e53c
Change python 3.2 to python 3
author | Ben Croston <ben@fuzzyduckbrewery.co.uk> |
---|---|
date | Fri, 12 Aug 2011 21:58:59 +0100 |
parents | ad9d9bf61243 |
children | d3c5d7c62f57 |
rev | line source |
---|---|
0 | 1 ============ |
2 Zebra-0.0.1a | |
3 ============ | |
4 | |
5 Note: | |
6 | |
7 - Windows support is not yet available but is currently being developed. | |
8 - Mac OSX may be supported but has not yet been tested. | |
9 | |
10 Usage: | |
11 | |
12 :: | |
13 | |
14 z = zebra( [printerqueue] ) | |
15 - Constructor with optional printerqueue | |
16 | |
17 z.getqueues() | |
18 - Return a list containing a list of printer queues | |
19 | |
20 z.setqueue( printerqueue ) | |
21 - Set the printer queue | |
22 | |
2
ad9d9bf61243
Change direct transfer to direct thermal
Ben Croston <ben@fuzzyduckbrewery.co.uk>
parents:
1
diff
changeset
|
23 z.setup(direct_thermal=None, label_height=None, label_width=None) |
0 | 24 - Set up the printer |
25 | |
1 | 26 z.store_graphic(name, filename) |
0 | 27 - Store a graphics .PCX file on printer |
28 | |
29 z.output(commands) | |
30 - Output EPL2 commands to the printer | |
31 |