Warning: count(): Parameter must be an array or an object that implements Countable in /var/www/html/scripts/sb_display.php on line 404
Martins dies und das - blog.martin-enders.de
Create fancy text images with convert (imagemagick) 
Tuesday, February 5, 2008, 09:15 PM - Linux, shell scripts
Today I made a little shell script to create the text-logos like the 'fancy text' image in this entry.


convert -fill 'rgb(128,128,128)' -background transparent -font FONT.TTF -pointsize 50 label:"EXAMPLE TEXT" -rotate 90 OUTPUT_FILE

-fill        Color in rgb notation
-background  Background color (here transparent background)
-font        ttf-file (I think you can also use a system font).
-pointsize   size of the text
-label:""    Text which appears in the image
-rotate      Rotate the image
-OUTPUT_FILE filename of the output file
             (here png because I use a transparent background)


Source: http://imagemagick.org/script/command-line-tools.php
  |  permalink  |  related link