\ .\" This man page was generated by the Netpbm tool 'makeman' from HTML source. .\" Do not hand-hack it! If you have bug fixes or improvements, please find .\" the corresponding HTML page on the Netpbm website, generate a patch .\" against that, and send it to the Netpbm maintainer. .TH "Pgmtoppm User Manual" 0 "10 December 2006" "netpbm documentation" .SH NAME pgmtoppm - colorize a PGM (grayscale) image into a PPM (color) image .UN synopsis .SH SYNOPSIS \fBpgmtoppm\fP \fIcolorspec\fP [\fIpgmfile\fP] \fBpgmtoppm\fP \fIcolorspec1\fP\fB-\fP\fIcolorspec2\fP [\fIpgmfile\fP] \fBpgmtoppm\fP \fB-map=\fP\fImapfile\fP [\fIpgmfile\fP] .PP Minimum unique abbreviation of option is acceptable. You may use double hyphens instead of single hyphen to denote options. You may use white space in place of the equals sign to separate an option name from its value. .UN description .SH DESCRIPTION .PP This program is part of .BR Netpbm (1) . .PP \fBpgmtoppm\fP reads a PGM as input and produces a PPM file as output with a specific color assigned to each gray value in the input. .PP If you specify one color argument, black in the pgm file stays black and white in the pgm file turns into the specified color in the ppm file. Gray values in between are linearly mapped to differing intensities of the specified color. .PP If you specify two color arguments (separated by a hyphen), then black gets mapped to the first color and white gets mapped to the second and gray values in between get mapped linearly (across a three dimensional space) to colors in between. .PP Specify the color (\fIcolor\fP) as described for the .UR libppm.html#colorname argument of the \fBppm_parsecolor()\fP library routine .UE \&. .PP Also, you can specify an entire colormap with the \fB-map\fP option. The mapfile is just a \fBppm\fP file; it can be any shape, all that matters is the colors in it and their order. In this case, black gets mapped into the first color in the map file, and white gets mapped to the last and gray values in between are mapped linearly onto the sequence of colors in between. The maxval of the output image is the maxval of the map image. .PP A more direct way to specify a particular color to replace each particular gray level is to use \fBpamlookup\fP. You make an index file that explicitly associates a color with each possible gray level. .UN maxval .SH NOTE - MAXVAL .PP When you don't use \fB-map\fP, the 'maxval,' or depth, of the output image is the same as that of the input image. The maxval affects the color resolution, which may cause quantization errors you don't anticipate in your output. For example, you have a simple black and white image as a PGM with maxval 1. Run this image through \fBpgmtoppm 0f/00/00\fP to try to make the image black and faint red. Because the output image will also have maxval 1, there is no such thing as faint red. It has to be either full-on red or black. \fBpgmtoppm\fP rounds the color 0f/00/00 down to black, and you get an output image that is nothing but black. .PP The fix is easy: Pass the input through \fBpamdepth\fP on the way into \fBpgmtoppm\fP to increase its depth to something that would give you the resolution you need to get your desired color. In this case, \fBpamdepth 16\fP would do it. Or spare yourself the unnecessary thinking and just say \fBpamdepth 255\fP. .PP PBM input is a special case. While you might think this would be equivalent to a PGM with maxval 1 since only two gray levels are necessary to represent a PBM image, \fBpgmtoppm\fP, like all Netpbm programs, in fact treats it as a maxval of 255. .UN seealso .SH SEE ALSO .BR pamdepth (1) , .BR rgb3toppm (1) , .BR ppmtopgm (1) , .BR ppmtorgb3 (1) , .BR ppm (5) , .BR pgm (5) .UN author .SH AUTHOR Copyright (C) 1991 by Jef Poskanzer.