Howto use imagemagick in the terminal
From How2s
(Redirected from How2 use imagemagick in the terminal)
| Table of contents |
[edit]
Image Editing with ImageMagick (http://www.imagemagick.org)
[edit]
Generate image of a text input
echo "This is a test" | convert -background yellow -page 200x50 text:- mediocreimage.jpg
[edit]
Generate image of text file input
less text.txt | convert -background yellow -page 200x50 text:- mediocreimage.jpg
[edit]

