summaryrefslogtreecommitdiffstats
path: root/tkimg/doc/img-ppm.man
diff options
context:
space:
mode:
authorWilliam Joye <wjoye@cfa.harvard.edu>2017-01-03 21:51:01 (GMT)
committerWilliam Joye <wjoye@cfa.harvard.edu>2017-01-03 21:51:01 (GMT)
commita780057cc1b51dd3a557549c3cf2431f09136c0d (patch)
tree717f78052c55596449b27743171d7e170c4d39a0 /tkimg/doc/img-ppm.man
parent7749430b9352c1eaf5dca7d8a89a6d35f565ef24 (diff)
downloadblt-a780057cc1b51dd3a557549c3cf2431f09136c0d.zip
blt-a780057cc1b51dd3a557549c3cf2431f09136c0d.tar.gz
blt-a780057cc1b51dd3a557549c3cf2431f09136c0d.tar.bz2
upgrade tkimg to 1.4.6
Diffstat (limited to 'tkimg/doc/img-ppm.man')
-rw-r--r--tkimg/doc/img-ppm.man100
1 files changed, 0 insertions, 100 deletions
diff --git a/tkimg/doc/img-ppm.man b/tkimg/doc/img-ppm.man
deleted file mode 100644
index ff604b4..0000000
--- a/tkimg/doc/img-ppm.man
+++ /dev/null
@@ -1,100 +0,0 @@
-[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]