-
Hey. Amazing library and I am looking forward to hooking the printer up to my Twitch streams for the viewers. I have everything working via the web UI but can't print text from the command line on my Raspberry Pi (RaspberryOS). I'm getting the following:
I've installed imagemagick via apt so I'm at a loss of where to go next. Is there something obvious that I'm missing? |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 7 replies
-
Try if any "legacy" IM command would work, e.g. I will consider circumstance it in the code in the future. By the way, if what you mean is to print chat content, you may consider using PF2 font technique, as it could stream text buffer by nature. |
Beta Was this translation helpful? Give feedback.
Try if any "legacy" IM command would work, e.g.
convert
. Just try it in terminal.If that works, you can
doalias magick=convert
in the shell (put to~/.bashrc
to persist),or symlink
magick
toconvert
:sudo ln -s /usr/bin/convert /usr/bin/magick
I will consider circumstance it in the code in the future.
By the way, if what you mean is to print chat content, you may consider using PF2 font technique, as it could stream text buffer by nature.
And with it, it can be as simple as piping two commands.
By contrast, IM prints all text in-one-shot, and could be resource heavy, especially in this case (that should be invoked many times)
You can know more from cmdline help or #10.