Table of Contents

Name

rleprint - Print the values of all the pixels in the file.

Synopsis

rleprint [ -a ] [ infile ]

Description

This program reads an RLE(5) image and prints the values of all the pixels to the standard output. Each pixel is printed on a single line. For example, a count of all the unique pixel values in the file could be obtained by
rleprint pic.rle | sort -u | wc
infile
The input will be read from this file. If infile is "-" or is not specified, the input will be read from the standard input stream.

Options

-a
Print the alpha value (if available) as the last entry on the line.

See Also

rlehdr(1) , urt(1) , RLE(5) .

Author

Spencer W. Thomas

Bugs

This program is of limited utility because of the sheer volume of output it generates.


Table of Contents