1GIFTEXT(1) GIFLIB Documentation GIFTEXT(1)
2
3
4
6 giftext - dump GIF pixels and metadata as text
7
9 giftext [-v] [-c] [-e] [-z] [-p] [-r] [-h] [gif-file]
10
12 A program to dump (text only) general information about GIF file.
13
14 If no GIF file is given, giftext will try to read a GIF file from
15 stdin.
16
18 -v
19 Verbose mode (show progress). Enables printout of running scan
20 lines.
21
22 -c
23 Dumps the color maps.
24
25 -e
26 Dumps encoded bytes - the pixels after compressed using LZ
27 algorithm and chained to form bytes. This is the form the data is
28 saved in the GIF file. Dumps in hex - 2 digit per byte.
29
30 -z
31 Dumps the LZ codes of the image. Dumps in hex - 3 digits per code
32 (as we are limited to 12 bits).
33
34 -p
35 Dumps the pixels of the image. Dumps in hex - 2 digit per pixel
36 (<=byte).
37
38 -r
39 Dumps raw pixels as one byte per pixel. This option inhibits all
40 other options and only the pixels are dumped. This option may be
41 used to convert GIF files into raw data. Note: the color map can be
42 extracted by gifclrmp utility. If more than one image is included
43 in the file, all images will be dumped in order.
44
45 -h
46 Print one line of command line help, similar to Usage above.
47
49 Gershon Elber.
50
51
52
53GIFLIB 2 May 2012 GIFTEXT(1)