Difference between revisions of "ICON Creation"

From NST Wiki
Jump to navigationJump to search
(New page: Some information and tips on creating ICON images used by the NST distribution. = Using ImageMagick = The following demonstrates how to create a 16x16 pixel ICON image. The source image ...)
 
(No difference)

Latest revision as of 13:45, 18 April 2009

Some information and tips on creating ICON images used by the NST distribution.

Using ImageMagick

The following demonstrates how to create a 16x16 pixel ICON image. The source image can be any size (does not even need to be square):

convert /usr/share/pixmaps/fedorausb.png -thumbnail 16x16 -background transparent \
  -gravity center -extent 16x16 fedorausb-16x16.png;

While this works as a good starting point, you may want to tweak the resulting image.