Skip to content

Printing text on Raspberry Pi - imagemagick error #29

Answered by NaitLee
johnsreid asked this question in Q&A
Discussion options

You must be logged in to vote

Try if any "legacy" IM command would work, e.g. convert. Just try it in terminal.
If that works, you can do alias magick=convert in the shell (put to ~/.bashrc to persist),
or symlink magick to convert:
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.

Replies: 1 comment 7 replies

Comment options

You must be logged in to vote
7 replies
@johnsreid
Comment options

@NaitLee
Comment options

@NaitLee
Comment options

@johnsreid
Comment options

@NaitLee
Comment options

Answer selected by johnsreid
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Category
Q&A
Labels
None yet
2 participants