1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
|
\
.\" 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 "Pnmtorle User Manual" 0 "March 31, 1994" "netpbm documentation"
.UN lbAB
.SH NAME
pnmtorle - convert a Netpbm image file into an RLE image file.
.UN lbAC
.SH SYNOPSIS
\fBpnmtorle\fP
[\fB-h\fP]
[\fB-v\fP]
[\fB-a\fP]
[\fB-o\fP \fIoutfile\fP]
[\fIpnmfile\fP]
.UN lbAD
.SH DESCRIPTION
.PP
This program is part of
.BR "Netpbm" (1)\c
\&.
.PP
This program converts Netpbm image files into Utah RLE image files.
You can include a transparency mask. If the input is a multiple image file,
the output consists of several concatenated RLE images.
.PP
The RLE file will contain either a three channel color image (24
bits) or a single channel grayscale image (8 bits) depending upon the
pnm file depth. If a converted ppm is displayed on an 8 bit display,
the image must be dithered. In order to produce a better looking
image (on 8 bit displays), it is recommended that the image be
quantizing (to 8 bit mapped color) prior to its display. This may be
done by piping the output of this program into the Utah \fBmcut\fP or
\fBrlequant\fP utilities. We show an example of this later.
.UN lbAE
.SH OPTIONS
.TP
\fB-v\fP
This option will cause \fBpnmtorle\fP to operate in verbose mode. The header
information is written to "stderr". Actually, there is not much header
information stored in a Netpbm file, so this information is minimal.
.TP
\fB-h\fP
This option allows the header of the Netpbm image to be dumped to "stderr"
without converting the file. It is equivalent to using the -v option except
that no file conversion takes place.
.TP
\fB-a\fP
This option causes \fBpnmtorle\fP to include an transparency channel in the
output image. The transparency channel is based on the image: Wherever a
pixel is black, the corresponding trasparency value is transparent.
Everywhere else, the transparency value is fully opaque.
.TP
\fB-o\fP \fIoutfile\fP
If you specify this option, \fBpnmtorle\fP writes the output to
this file. If \fIoutfile\fP is \fB-\fP or you don't specify
\fB-o\fP, \fBpnmtorle\fP writes the output to Standard Output.
.TP
\fIpnmfile\fP
The name of the Netpbm image data file to be converted. If not specified,
standard input is assumed.
.UN lbAF
.SH EXAMPLES
.nf
pnmtorle -v file.ppm -o file.rle
.fi
.PP
While running in verbose mode, convert file.ppm to RLE format and store
resulting data in file.rle.
.nf
pnmtorle -h file.pgm
.fi
.PP
Dump the header information of the Netpbm file called file.pgm.
.UN lbAG
.SH SEE ALSO
.BR "rletopnm" (1)\c
\&
.UN lbAH
.SH AUTHOR
.nf
Wes Barris,
Army High Performance Computing Research Center (AHPCRC)
Minnesota Supercomputer Center, Inc.
.fi
.SH DOCUMENT SOURCE
This manual page was generated by the Netpbm tool 'makeman' from HTML
source. The master documentation is at
.IP
.B http://netpbm.sourceforge.net/doc/pnmtorle.html
.PP
|