brother_ql_web
brother_ql_web copied to clipboard
Label size "62mm endless (black/red/white)" only with red color but not in black
Dear brother_ql_web developers,
When using the label size "62mm endless (black/red/white)" the label is previewed in red and it is printed in read color. What is necessary to print in black color?
Kind regards, Martin
A quick hack to print exclusively black with such printers is to change the line in brother_ql_web.py beginning with context['fill_color']
to the following:
context['fill_color'] = (0, 0, 0)
This is because (as far as I understand it), the rastered image gets printed. Normally, the whole image is filled with red if red is available, otherwise it stays black. With this you say you want to fill it black, regardless of a red tape.
Would it be possible to leverage both black and red on a single label? I understand that this would add complexity but just curious.