summaryrefslogtreecommitdiffstats
path: root/tkimg/doc/img-ppm.man
blob: 66db954266adc2732aa70cbf671df08625fb99c3 (plain)
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
[comment {-*- tcl -*- doctools}]
[vset FORMATNAME ppm]
[vset FORMATFULLNAME {Portable Pixmap format}]

[include format-header.inc]

This handler provides additional configuration options. See
section [sectref {PPM OPTIONS}] for more detailed explanations.

[include format-middle.inc]

In addition the value for the option is treated as list and may
contain any of the special options listed in section

[sectref {PPM OPTIONS}].

[list_end]

[section {SUPPORTED PPM TYPES}]

This handler supports the PPM (Truecolor) and PGM (Greyscale) image formats.
There are two types of PPM/PGM files: RAW (binary) and ASCII.
The values stored in PPM/PGM files can be unsigned 8-bit or unsigned 16-bit
values.

[example_begin]

 Grayscale (PGM): 8-bit and 16-bit, 1 channel per pixel.
 Truecolor (PPM): 8-bit and 16-bit, 3 channels per pixel.

 List of currently supported features:

 Type              |     Read      |     Write     |
                   | -file | -data | -file | -data |
 ---------------------------------------------------
 PGM  8-bit ASCII  | Yes   | Yes   | No    | No    |
 PGM  8-bit BINARY | Yes   | Yes   | No    | No    |
 PGM 16-bit ASCII  | Yes   | Yes   | No    | No    |
 PGM 16-bit BINARY | Yes   | Yes   | No    | No    |
 PPM  8-bit ASCII  | Yes   | Yes   | Yes   | Yes   |
 PPM  8-bit BINARY | Yes   | Yes   | Yes   | Yes   |
 PPM 16-bit ASCII  | Yes   | Yes   | No    | No    |
 PPM 16-bit BINARY | Yes   | Yes   | No    | No    |

[example_end]

[section {PPM OPTIONS}]

The handler provides the following options:

[list_begin definitions]

[lst_item "[option -verbose] [arg bool]"]

This option is supported for reading and writing.
[nl]
If set to [const true], additional information about the loaded/stored image
is printed to stdout. Default is [const false].

[lst_item "[option -scanorder] [arg string]"]

This option is supported for reading only.
[nl]
Specify the scanline order of the input image.
Possible values: [const TopDown] or [const BottomUp]. Default is [const TopDown].

[lst_item "[option -gamma] [arg float]"]

This option is supported for reading only.
[nl]
Specify a gamma correction to be applied when mapping
16-bit input data to 8-bit image values.
Default is [const 1.0].

[lst_item "[option -min] [arg float]"]

This option is supported for reading only.
[nl]
Specify the minimum pixel value to be used for mapping
16-bit input data to 8-bit image values.
Default is the minimum value found in the image data.

[lst_item "[option -max] [arg float]"]

This option is supported for reading only.
[nl]
Specify the maximum pixel value to be used for mapping
16-bit input data to 8-bit image values.
Default is the maximum value found in the image data.

[lst_item "[option -ascii] [arg bool]"]

This option is supported for writing only.
If set to [const true], the file is written in PPM 8-bit ASCII format (P3).
Default is [const false], i.e. write in PPM 8-bit binary format (P6).

[list_end]

[list_begin definitions]
[include format-footer.inc]