Linux Commands Examples

A great documentation place for Linux commands

ppmmake

create a pixmap of a specified size and color


see also : pbmmake

Synopsis

ppmmake color width height


add an example, a script, a trick and tips

: email address (won't be displayed)
: name

Step 2

Thanks for this example ! - It will be moderated and published shortly.

Feel free to post other examples
Oops ! There is a tiny cockup. A damn 404 cockup. Please contact the loosy team who maintains and develops this wonderful site by clicking in the mighty feedback button on the side of the page. Say what happened. Thanks!

examples

0
source
            
* )
ppmmake $color $size 1 > $tmp2
;;
esac
pnmflip -rotate90 $tmp2 > $tmp3
# Cat things together.
0
source
            
ppmmake $color $size 1 > $tmp2
;;
esac
pamflip -rotate90 $tmp2 > $tmp3
0
source
            
pnmcut 0 $top $screenWidth $screenHeight image.pnm > imagecut.pnm
ppmmake black $screenWidth $screenHeight > background.pnm
pnmpaste -replace imagecut.pnm 0 0 background.pnm > sd1.pnm
0
source
            
if test "$tileset" = "32"; then
ppmmake rgb:47/6c/6c 32 32 > background.ppm
else
ppmmake rgb:47/6c/6c 48 64 > background.ppm

description

Produces a portable pixmap of the specified color, width, and height.

The color can be specified in five ways:

o

A name, assuming that a pointer to an X11-style color names file was compiled in.

o

An X11-style hexadecimal specifier: rgb:r/g/b, where r g and b are each 1- to 4-digit hexadecimal numbers.

o

An X11-style decimal specifier: rgbi:r/g/b, where r g and b are floating point numbers between 0 and 1.

o

For backwards compatibility, an old-X11-style hexadecimal number: #rgb, #rrggbb, #rrrgggbbb, or #rrrrggggbbbb.

o

For backwards compatibility, a triplet of numbers separated by commas: r,g,b, where r g and b are floating point numbers between 0 and 1. (This style was added before MIT came up with the similar rgbi style.)


see also

ppm, pbmmake


author

Copyright (C) 1991 by Jef Poskanzer.

How can this site be more helpful to YOU ?


give  feedback