We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Here's a quick example of how to generate a printable text label with ImageMagick:
convert -rotate 90 -pointsize 200 label:"Lorem Ipsum" -flop -bordercolor white -border 80x80 -resize 128x -monochrome label.png
Source: https://gist.github.com/stecman/ee1fd9a8b1b6f0fdd170ee87ba2ddafd#gistcomment-3040694
The text was updated successfully, but these errors were encountered:
I find that setting antialiasing and strokewidth make the prints look nicer.
An example is
convert -monochrome \ -font Courier-Bold \ -background white \ -fill black \ -size x128 \ -gravity west \ -pointsize 32 \ +antialias \ -strokewidth 0.5 \ caption:"Test\nTest2\nTest3\nTest4" \ write.pbm
Sorry, something went wrong.
No branches or pull requests
Here's a quick example of how to generate a printable text label with ImageMagick:
convert -rotate 90 -pointsize 200 label:"Lorem Ipsum" -flop -bordercolor white -border 80x80 -resize 128x -monochrome label.png
Source: https://gist.github.com/stecman/ee1fd9a8b1b6f0fdd170ee87ba2ddafd#gistcomment-3040694
The text was updated successfully, but these errors were encountered: