This Gist is superseded by https://github.com/Ircama/PT-P300BT
The Brother P-touch Cube PT-P300BT labelling machine is intended to be controlled from the official Brother P-touch Design&Print 2 app for Android and iOS devices, instead of from a computer.
This Gist provides small code revision and some additional scripts to the dogtopus/Pipfile one, which in turn is forked from the excellent stecman one, in order to print text labels via scripts on computers with different O.S. or subsystems.
The scripts are used to convert text labels to appropriate images compatible with 12mm width craft tapes like TZe-131 or TZe-231. The font is fixed (TrueType ps:helvetica) and the ImageMagick convert parameters are tuned for the max allowed character size with this printer.
Two settings are empirically experimented: for character sequences (numbers and uppercase (or lowercase) letters) which do not overshoot below the baseline (e.g., different from jgpq|\$/@_()[]{}
), the max size can be obtained via -pointsize 86 -splice 0x5 -border 10x10
(e.g., uppercase characters and numbers get the full size of about 9 mm with upper and lower tape border of 1,5 mm); otherwise, a slightly smaller but more compatible size (allowing overshoots) can be used via -size x82 -gravity south -splice 0x15
(corpus size of ab. 6 mm, cap height of over 7 mm). WSL has different values (see below). In all cases, -background white -bordercolor white -fill black
have to be added. -style
and -weight
attributes can be added for italic and bold styles (while -stretch
does not produce differences). The cap height of the default setting of the Brother P-touch Design&Print 2 app is about 5 mm, but can be resized via text submenu.
Other possibly compatible fonts (if installed) which could be added with the -family
parameter (with Ubuntu):
- Andale Mono
- Courier New
- Georgia
- Liberation Mono
- Liberation Sans
- Liberation Sans Narrow
- Liberation Serif
- Nimbus Mono L
- Ubuntu
- Ubuntu Condensed
The latter (-family "Ubuntu Condensed"
) could be the most appropriate one for condensed text.
The scripts are simple examples which can be easily replaced by more functional apps.
Notice that the printer separates each printout by about 27 mm of unprinted tape.
Download ImageMagick checking the legacy convert tool while installing.
- Install the latest version of Python
- Install git from Git-scm or using the Git for Windows installer
- Open a CMD:
python3 -m pip install --upgrade pip
python3 -m pip install pillow packbits
git clone https://gist.github.com/bd53c77c98ecd3d7db340c0398b22d8a.git printlabel # this Gist
cd printlabel
Unzip all files in "printlabel.zip" to the current directory, replacing the old ones (code modified to support RFCOMM on the Windows COM port).
Pair the printer with an RFCOMM COM port using the Windows Bluetooth panel.
Usage: printlabel "label to print" "COM Port"
./printlabel "Lorem Ipsum" COM5
sudo apt-get update
sudo apt-get install -y python3 python3-dev python3-pip git imagemagick imagemagick-6.q16 libbluetooth-dev
python3 -m pip install --upgrade pip
python3 -m pip install pybluez pillow packbits
git clone https://gist.github.com/64ae743825e42f2bb8ec79cea7ad2057.git printlabel # dogtopus/Pipfile Gist
cd printlabel
cat > printlabel <<\eof
#!/bin/bash
if [ $# -ne 2 ]
then echo "Usage: $(basename $0)" '"label to print" "Bluetooth MAC address"'
exit 1
fi
echo "Press ESC to print or Control-C to break"
trap 'exit 2' 1 2 13 15
if [[ "$1" =~ [\]jgpq\|\\\$/@_(){}\[] ]]
then convert -size x82 -gravity south -splice 0x15 -background white -bordercolor white label:"$1" -fill black label.png
echo "standard mode"
else convert -pointsize 86 -background white -bordercolor white label:"$1" -fill black -splice 0x5 -border 10x10 label.png # UPPERCASE BLOCK
echo "UPPERCASE MODE (bigger font)"
fi
display label.png
python3 labelmaker.py -i label.png "$2"
rm label.png
exit 0
eof
chmod a+x printlabel
Note: Windows Subsystem for Linux (also V2) does not support Bluetooth at the moment.
Switch on the printer.
Connect the printer via Ubuntu Bluetooth panel (e.g., Settings, Bluetooth).
To read the MAC address:
hcitool scan
Usage: printlabel "label to print" "Bluetooth MAC address"
Selecting standard font size:
./printlabel "Lorem Ipsum" "AA:BB:CC:DD:EE:FF"
Selecting bigger font with uppercase letters and numbers:
./printlabel "LOREM IPSUM" "AA:BB:CC:DD:EE:FF"
On WSL the installation uses the same code for Windows, with a shell based procedure without "display", which needs an X-Windows server.
sudo apt-get update
sudo apt-get install -y python3 python3-dev python3-pip git imagemagick imagemagick-6.q16 libbluetooth-dev
python3 -m pip install --upgrade pip
python3 -m pip install pillow packbits
git clone https://gist.github.com/bd53c77c98ecd3d7db340c0398b22d8a.git printlabel # this Gist
cd printlabel
unzip printlabel.zip
rm printlabel.zip
cat > printlabel.sh <<\eof
#!/bin/bash
if [ $# -ne 2 ]
then echo "Usage: $(basename $0)" '"label to print" /dev/ttyS_serial_port_number'
exit 1
fi
if [[ "$1" =~ [\]jgpq\|\\\$/@_(){}\[] ]]
then convert -size x65 -splice 0x5 -background white -bordercolor white label:"$1" -fill black label.png
echo "standard mode"
else convert -pointsize 86 -background white -bordercolor white label:"$1" -fill black -splice 0x17 -border 0x0 label.png # UPPERCASE BLOCK
echo "UPPERCASE MODE (bigger font)"
fi
python3 labelmaker.py -i label.png "$2"
rm label.png
exit 0
eof
chmod a+x printlabel.sh
Pair the printer with an RFCOMM COM port using the Windows Bluetooth panel. Check the outbound RFCOMM COM port number and use it to define /dev/ttyS_serial_port_number; for instance, COM5 is /dev/ttyS5.
Usage: printlabel.sh "label to print" /dev/ttyS_serial_port_number
Selecting standard font size:
./printlabel.sh "Lorem Ipsum" /dev/ttyS5
Selecting bigger font with uppercase letters and numbers:
./printlabel.sh "LOREM IPSUM" /dev/ttyS5
Hello
Thank you for this code.
I have followed the instructions with executing the two
pip
commands, clone the repository and unzip it and then followed the rest of the instructions.With the new Version of ImageMagic, It seems that a bit have changed. Therefore I've tried to change the path in the
printlabel.cmd
file toset CONVERT="C:\Program Files\ImageMagick-7.1.1-Q16-HDRI\convert.exe" set DISPLAY="C:\Program Files\ImageMagick-7.1.1-Q16-HDRI\imdisplay.exe"
Unfortunately, it seems that the newer ImageMagic Version doesn't have imdisplay.exe anymore.
And it seems that it have also an issue with
import ptstatus
andimport serial
.this are the error messages, I get, wehn I execute:
./printlabel "Lorem Ipsum" COM5
I have tried to solve the issues but I'm not experienced enough to solve the problem.
Maybe you are willing to check and maybe update the code or instructions?
Or do I do something wrong?
Best regards
Simon