Powered by emcons.net

Howto use imagemagick in the terminal

From How2s

Table of contents

Image Editing with ImageMagick (http://www.imagemagick.org)

Generate image of a text input

echo "This is a test" | convert -background yellow -page 200x50 text:- mediocreimage.jpg

Generate image of text file input

less text.txt | convert -background yellow -page 200x50 text:- mediocreimage.jpg

Image Conversion with Netpbm (http://netpbm.sourceforge.net)