Blame man/pal2rgb.1

Packit 994f1a
.\" $Id: pal2rgb.1,v 1.3 2005/11/02 11:07:19 dron Exp $
Packit 994f1a
.\"
Packit 994f1a
.\" Copyright (c) 1990-1997 Sam Leffler
Packit 994f1a
.\" Copyright (c) 1991-1997 Silicon Graphics, Inc.
Packit 994f1a
.\"
Packit 994f1a
.\" Permission to use, copy, modify, distribute, and sell this software and 
Packit 994f1a
.\" its documentation for any purpose is hereby granted without fee, provided
Packit 994f1a
.\" that (i) the above copyright notices and this permission notice appear in
Packit 994f1a
.\" all copies of the software and related documentation, and (ii) the names of
Packit 994f1a
.\" Sam Leffler and Silicon Graphics may not be used in any advertising or
Packit 994f1a
.\" publicity relating to the software without the specific, prior written
Packit 994f1a
.\" permission of Sam Leffler and Silicon Graphics.
Packit 994f1a
.\" 
Packit 994f1a
.\" THE SOFTWARE IS PROVIDED "AS-IS" AND WITHOUT WARRANTY OF ANY KIND, 
Packit 994f1a
.\" EXPRESS, IMPLIED OR OTHERWISE, INCLUDING WITHOUT LIMITATION, ANY 
Packit 994f1a
.\" WARRANTY OF MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE.  
Packit 994f1a
.\" 
Packit 994f1a
.\" IN NO EVENT SHALL SAM LEFFLER OR SILICON GRAPHICS BE LIABLE FOR
Packit 994f1a
.\" ANY SPECIAL, INCIDENTAL, INDIRECT OR CONSEQUENTIAL DAMAGES OF ANY KIND,
Packit 994f1a
.\" OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS,
Packit 994f1a
.\" WHETHER OR NOT ADVISED OF THE POSSIBILITY OF DAMAGE, AND ON ANY THEORY OF 
Packit 994f1a
.\" LIABILITY, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE 
Packit 994f1a
.\" OF THIS SOFTWARE.
Packit 994f1a
.\"
Packit 994f1a
.if n .po 0
Packit 994f1a
.TH PAL2RGB 1 "September 20, 2005" "libtiff"
Packit 994f1a
.SH NAME
Packit 994f1a
pal2rgb \- convert a palette color
Packit 994f1a
.SM TIFF
Packit 994f1a
image to a full color image
Packit 994f1a
.SH SYNOPSIS
Packit 994f1a
.B pal2rgb
Packit 994f1a
[
Packit 994f1a
.I options
Packit 994f1a
]
Packit 994f1a
.I input.tif
Packit 994f1a
.I output.tif
Packit 994f1a
.SH DESCRIPTION
Packit 994f1a
.I Pal2rgb
Packit 994f1a
converts a palette color
Packit 994f1a
.SM TIFF
Packit 994f1a
image to a full color image by
Packit 994f1a
applying the colormap of the palette image to each sample
Packit 994f1a
to generate a full color
Packit 994f1a
.SM RGB
Packit 994f1a
image.
Packit 994f1a
.SH OPTIONS
Packit 994f1a
Options that affect the interpretation of input data are:
Packit 994f1a
.TP
Packit 994f1a
.B \-C
Packit 994f1a
This option overrides the default behavior of
Packit 994f1a
.I pal2rgb
Packit 994f1a
in determining whether or not
Packit 994f1a
colormap entries contain 16-bit or 8-bit values.
Packit 994f1a
By default the colormap is inspected and
Packit 994f1a
if no colormap entry greater than 255 is found,
Packit 994f1a
the colormap is assumed to have only 8-bit values; otherwise
Packit 994f1a
16-bit values (as required by the
Packit 994f1a
.SM TIFF
Packit 994f1a
specification) are assumed.
Packit 994f1a
The
Packit 994f1a
.B \-C
Packit 994f1a
option can be used to explicitly specify the number of
Packit 994f1a
bits for colormap entries:
Packit 994f1a
.B "\-C 8"
Packit 994f1a
for 8-bit values, 
Packit 994f1a
.B "\-C 16"
Packit 994f1a
for 16-bit values.
Packit 994f1a
.PP
Packit 994f1a
Options that affect the output file format are:
Packit 994f1a
.TP
Packit 994f1a
.B \-p
Packit 994f1a
Explicitly select the planar configuration used in organizing
Packit 994f1a
data samples in the output image:
Packit 994f1a
.B "\-p contig"
Packit 994f1a
for samples packed contiguously, and
Packit 994f1a
.B "\-p separate"
Packit 994f1a
for samples stored separately.
Packit 994f1a
By default samples are packed.
Packit 994f1a
.TP
Packit 994f1a
.B \-c
Packit 994f1a
Use the specific compression algorithm to encoded image data
Packit 994f1a
in the output file:
Packit 994f1a
.B "\-c packbits"
Packit 994f1a
for Macintosh Packbits,
Packit 994f1a
.B "\-c lzw"
Packit 994f1a
for Lempel-Ziv & Welch,
Packit 994f1a
.B "\-c zip"
Packit 994f1a
for Deflate,
Packit 994f1a
.B "\-c none"
Packit 994f1a
for no compression.
Packit 994f1a
If no compression-related option is specified, the input
Packit 994f1a
file's compression algorithm is used.
Packit 994f1a
.TP
Packit 994f1a
.B \-r
Packit 994f1a
Explicitly specify the number of rows in each strip of the
Packit 994f1a
output file.
Packit 994f1a
If the
Packit 994f1a
.B \-r
Packit 994f1a
option is not specified, a number is selected such that each
Packit 994f1a
output strip has approximately 8 kilobytes of data in it.
Packit 994f1a
.SH BUGS
Packit 994f1a
Only 8-bit images are handled.
Packit 994f1a
.SH "SEE ALSO"
Packit 994f1a
.BR tiffinfo (1),
Packit 994f1a
.BR tiffcp (1),
Packit 994f1a
.BR tiffmedian (1),
Packit 994f1a
.BR libtiff (3)
Packit 994f1a
.PP
Packit 994f1a
Libtiff library home page:
Packit 994f1a
.BR http://www.remotesensing.org/libtiff/