Create a Logo from the Command Line
April 21st, 2008 by Girish Venkatachalam in
You can create a neat logo from the Linux command line:
$ convert -size 800x120 xc:white -font Times-Roman
-pointsize 100 -fill gray -annotate +20+80 'Linux is cool!'
-fill black -annotate +23+83 'Linux is cool!' -trim
+repage logo.png
And, the following command should display the result:
$ qiv logo.png
If you want to play with multiple colors and fonts, the following will help:
$ convert -list type
$ convert -list color
__________________________
Special Magazine Offer -- Free Gift with Subscription
Receive a free digital copy of Linux Journal's System Administration Special Edition as well as instant online access to current and past issues. CLICK HERE for offer
Linux Journal: delivering readers the advice and inspiration they need to get the most out of their Linux systems since 1994.
Subscribe now!
The Latest
Newsletter
Tech Tip Videos
- Jul-01-09
- Jun-29-09
Recently Popular
From the Magazine
July 2009, #183
News Flash: Linux Kernel 3.0 to include an on-the-go Expresso machine interface! Ok, maybe not, but Linux is definitely going mobile, from phones to e-readers. Find out more inside about Android, the Kindle 2, the Western Digital MyBook II, The Bug, and Indamixx (a portable recording studio). And if you've gone mobile and you been wanting more Emacs in your life then check out Conkeror.
To compliment the mobile we've got the stationary: parsing command line options with getopt, checking your Ruby code with metric_fu, and building a secure Squid proxy. How is this stationary you ask? What can we say? It's not. We just wanted to see if anybody actually read this part of the page :) .
All this and more, and all you have to do is get your hot sweaty hands on the latest copy of Linux Journal.
Delicious
Digg
StumbleUpon
Reddit
Facebook








CONVERT program is not
On April 22nd, 2008 Anonymous (not verified) says:
CONVERT program is not installed in all distros !
program used
On April 21st, 2008 Micah Bucy (not verified) says:
It may be important to note that the program used is ImageMagick or its replacement, GraphicsMagick, as not all distros have this built in.
Interesting
On April 21st, 2008 Daniel (not verified) says:
This is cool. I've never really thought about graphics on the command line..
And qiv is *very* fast.
Post new comment