2017-03-22 18:02:11 +01:00
|
|
|
import os
|
|
|
|
|
2017-03-21 21:43:36 +01:00
|
|
|
import barcode
|
|
|
|
from brother_ql import BrotherQLRaster
|
|
|
|
from brother_ql import create_label
|
|
|
|
from brother_ql.backends import backend_factory
|
|
|
|
|
|
|
|
from barcode_helpers import BrotherLabelWriter
|
|
|
|
|
|
|
|
|
|
|
|
def print_bar_code(barcode_value, barcode_text, barcode_type="ean13", rotate=False, printer_type="QL-700",
|
|
|
|
label_type="62"):
|
|
|
|
bar_coder = barcode.get_barcode_class(barcode_type)
|
2017-03-21 22:08:19 +01:00
|
|
|
wr = BrotherLabelWriter(typ=label_type, rot=rotate, text=barcode_text, max_height=1000)
|
2017-03-21 21:43:36 +01:00
|
|
|
|
|
|
|
test = bar_coder(barcode_value, writer=wr)
|
2017-03-22 18:02:11 +01:00
|
|
|
base_path = os.path.dirname(os.path.realpath(__file__))
|
|
|
|
fn = test.save(os.path.join(base_path, "bar_codes", barcode_value))
|
|
|
|
print_image(fn, printer_type, label_type)
|
2017-03-21 21:43:36 +01:00
|
|
|
|
|
|
|
|
2017-03-21 22:08:19 +01:00
|
|
|
def print_image(fn, printer_type="QL-700", label_type="62"):
|
2017-03-21 21:43:36 +01:00
|
|
|
qlr = BrotherQLRaster(printer_type)
|
|
|
|
qlr.exception_on_warning = True
|
2017-03-21 22:08:19 +01:00
|
|
|
create_label(qlr, fn, label_type, threshold=70, cut=True)
|
2017-03-21 21:43:36 +01:00
|
|
|
|
|
|
|
be = backend_factory("pyusb")
|
|
|
|
list_available_devices = be['list_available_devices']
|
|
|
|
BrotherQLBackend = be['backend_class']
|
|
|
|
|
|
|
|
ad = list_available_devices()
|
|
|
|
assert ad
|
|
|
|
string_descr = ad[0]['string_descr']
|
|
|
|
|
|
|
|
printer = BrotherQLBackend(string_descr)
|
|
|
|
|
2017-03-22 18:02:11 +01:00
|
|
|
printer.write(qlr.data)
|