summary refs log tree commit diff
path: root/giftopnm.html
blob: 200350ce9ec287c721641002d370a167d593c759 (plain) (blame)
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
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 3.3//EN">
<html><head><title>Giftopnm User Manual</title></head>
<body>
<h1>giftopnm</h1>
Updated: 13 September 2012
<br>
<a href="#index">Table Of Contents</a>

<h2>NAME</h2>
giftopnm - convert a GIF file into a PNM image

<h2 id="synopsis">SYNOPSIS</h2>

<b>giftopnm</b>
[<b>--alphaout=</b>{<i>alpha-filename</i>,<b>-</b>}]
[<b>-verbose</b>]
[<b>-comments</b>]
[<b>-image=</b>{<i>N</i>,<b>all</b>}]
[<b>-repair</b>]
[<b>-quitearly</b>]
[<i>GIFfile</i>]

<p>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.

<h2 id="description">DESCRIPTION</h2>

<p>This program is part of <a href="index.html">Netpbm</a>.

<p>This is a graphics format converter from the GIF format to the PNM 
(i.e. PBM, PGM, or PPM) format.

<p>If the image contains only black and maximally bright white, the
output is PBM.  If the image contains more than those two colors, but
only grays, the output is PGM.  If the image contains other colors,
the output is PPM.

<p> A GIF image contains rectangular pixels.  They all have the same
aspect ratio, but may not be square (it's actually quite unusual for
them not to be square, but it could happen).  The pixels of a Netpbm
image are always square.  Because of the engineering complexity to do
otherwise, <b>giftopnm</b> converts a GIF image to a Netpbm image
pixel-for-pixel.  This means if the GIF pixels are not square, the
Netpbm output image has the wrong aspect ratio.  In this case,
<b>giftopnm</b> issues an informational message telling you to run
<b>pamscale</b> to correct the output.

<h2 id="options">OPTIONS</h2>

<p>In addition to the options common to all programs based on libnetpbm
(most notably <b>-quiet</b>, see <a href="index.html#commonoptions">
Common Options</a>), <b>giftopnm</b> recognizes the following
command line options:

<dl compact>
<dt><b>--alphaout=</b><i>alpha-filename</i>

<dd><b>giftopnm </b> creates a PBM file containing the transparency
information from the input image.  This transparency image is the same
dimensions as the input image, and each pixel of the transparency image tells
whether the corresponding pixel of the input image is transparent.  Black
means transparent; white means opaque.  If you don't
specify <b>--alphaout</b>, <b>giftopnm</b> does not generate a transparency
file, and if the input image has a transparency channel, <b>giftopnm</b> simply
discards it.

<p>If you specify <b>-</b> as the filename, <b>giftopnm</b> writes the
transparency output to Standard Output and discards the image.

<p>See <b><a href="pamcomp.html">pamcomp</a></b> for one way to use
the transparency output file.  

<dt><b>-verbose</b>

<dd>Produce verbose output about the GIF file input.

<dt><b>-comments</b>

<dd>
With this option, <b>giftopnm</b> issues messages showing the GIF comments
(A GIF89 stream can contain comments in comment extensions).
<p>
By default, <b>giftopnm</b> ignores comment extensions.


<dt><b>-image=</b>{<i>N</i>,<b>all</b>}

<dd>
This option identifies which image from the GIF stream you want.  
You can select either one image or all the images.  Select all the 
images with <b>all</b>.  Select one image by specifying its sequence
number in the stream: <b>1</b>, <b>2</b>, <b>3</b>, etc.

<p>The default is just Image 1.

<p>A GIF stream normally contains only one image, so you don't need
this option.  But some streams, including animated GIFs, have multiple
images.

<p>When you select multiple GIF images, the output is a PNM stream with
multiple images.

<p>If you specify a single image, <b>giftopnm</b> must read and
partially validate the images before that in the stream.  It may or may
not do the same for the images after it; see <b>-quitearly</b>.

<p>The <b>all</b> value was added in Netpbm 10.16 (June 2003).  Earlier
<b>giftopnm</b> can extract only one image.

<dt><b>-repair</b>

<dd>This option makes <b>giftopnm</b> try to salvage what it can from an
invalid GIF input.

<p>In particular, when <b>giftopnm</b> detects that the GIF input is
invalid so that it is impossible to determine what the pixels are
intended to be, it produces a single arbitrary color for all further
pixels in the image.  <b>giftopnm</b> processes the image from top to
bottom, left to right, so this means the bottommost pixels will be
this padding.

<p><b>giftopnm</b> issues warning messages when it salvages an image
in this way.

<p>Without this option, <b>giftopnm</b> fails when it detects invalid
GIF input.  Any output it produces is arbitrary, and typically is not
a valid PNM image.

<p>It is fairly common for an image to be corrupted such that is
started off as a valid GIF, but had the end of the file cut off.  An
interrupted network transfer tends to do this.  In this case,
<b>giftopnm</b>'s salvage operation will produce a valid PNM image of
the proper dimensions, but with a single arbitrary color for the pixels
that were left out of the file.

<p>This option was new in Netpbm 10.38 (March 2007).  From 10.32 through
10.37, <b>giftopnm</b> always fails if it detects invalid GIF input.
Before 10.32, it succeeds in the case of a truncated image, and replaces
the missing pixels with arbitrary colors, not necessarily all the same
(The pre-10.32 behavior wasn't actually intended by the design).


<dt><b>-quitearly</b>

<dd>This option makes <b>giftopnm</b> stop reading its input file as soon
as it has converted and output the images from the input that you requested.
By default, <b>giftopnm</b> reads until the end of the GIF stream, ignoring
any data after the images you requested.

<p>Two reasons <em>not</em> to use this option:
<ul>
<li>The input file is a pipe and the process that is filling that pipe
expects the pipe to take the entire stream and will fail or get stuck
if it doesn't.

<li>You want to validate the entire GIF stream.

</ul>

<p>Two reasons to use this option:

<ul>
<li>It saves the time and other resources to read the end of the stream.
<li>There are errors in the end of the stream that make <b>giftopnm</b> fail.
</ul>

<p>This option has no effect if you also specify <b>-image=all</b>

<p>This option was new in Netpbm 10.35 (August 2006).  Before that, 
<b>giftopnm</b> always reads the entire stream.
     
</dl>

<h2 id="restrictions">RESTRICTIONS</h2>

<p>This does not correctly handle the Plain Text Extension of the
GIF89 standard, since I did not have any example input files
containing them.

<h2 id="seealso">SEE ALSO</h2>

<b><a href="pamtogif.html">pamtogif</a></b>,
<b><a href="ppmcolormask.html">ppmcolormask</a></b>,
<b><a href="pamcomp.html">pamcomp</a></b>,
&lt;<a
href="http://www.lcdf.org/gifsicle">http://www.lcdf.org/gifsicle</a>&gt;,
<b><a href="ppm.html">ppm</a></b>.

<h2 id="author">AUTHOR</h2>

<p>Copyright (c) 1993 by David Koblas (<a
href="mailto:koblas@netcom.com">koblas@netcom.com</a>)

<h2 id="license">LICENSE</h2>

<p>As a historical note, for a long time if you used <b>giftopnm</b>,
you were using a patent on the LZW compression method which was owned
by Unisys, and in all probability you did not have a license from
Unisys to do so.  Unisys typically asked $5000 for a license for
trivial use of the patent.  Unisys never enforced the patent against
trivial users, and made statements that it is much less concerned
about people using the patent for decompression (which is what
<b>giftopnm</b> does than for compression.  The patent expired in
2003.

<p>Rumor has it that IBM also owns a patent covering <b>giftopnm</b>.

<p>A replacement for the GIF format that has never required any patent
license to use is the PNG format.


<hr>
<h2 id="index">Table Of Contents</h2>
<ul>
<li><a href="#synopsis">SYNOPSIS</a>
<li><a href="#description">DESCRIPTION</a>
<li><a href="#options">OPTIONS</a>
<li><a href="#restrictions">RESTRICTIONS</a>
<li><a href="#seealso">SEE ALSO</a>
<li><a href="#author">AUTHOR</a>
<li><a href="#license">LICENSE</a>
</ul>
</body>
</html>