summary refs log tree commit diff
path: root/ppmtoicr.html
blob: dc6265c3d5df0aaeff26582c883b0dc82300e916 (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
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 3.3//EN">
<html><head><title>Ppmtoicr User Manual</title></head>
<body>
<h1>ppmtoicr</h1>
Updated: 05 June 2015
<br>
<a href="#index">Table Of Contents</a>

<h2>NAME</h2>

ppmtoicr - convert a PPM image into NCSA ICR format 

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

<b>ppmtoicr</b>

[<b>-windowname</b> <i>name</i>]

[<b>-expand</b> <i>expand</i>]

[<b>-display</b> <i>display</i>]

[<b>-rle</b>]

[<i>ppmfile</i>]

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

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

<p><b>ppmtoicr</b> reads a PPM file as input.  Produces an NCSA Telnet
Interactive Color Raster graphic file as output.

If <i>ppmfile</i> is not supplied, <b>ppmtoicr</b> reads from Standard
Input.

<p>Interactive Color Raster (ICR) is a protocol for displaying raster
graphics on workstation screens. The protocol is implemented in NCSA
Telnet for the Macintosh version 2.3.  The ICR protocol shares
characteristics of the Tektronix graphics terminal emulation protocol.
For example, escape sequences are used to control the display.

<p><b>ppmtoicr</b> will output the appropriate sequences to create a
window of the dimensions of the input image, create a colormap of up
to 256 colors on the display, then load the picture data into the
window.

<p>Note that there is no icrtoppm tool - this transformation is one
way.

<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>ppmtoicr</b> recognizes the following
command line options:

<dl compact>
<dt><b>-windowname</b> <i>name</i>

<dd>Output will be displayed in <i>name</i> (Default is to use
<i>ppmfile</i> or "untitled" if the input is from Standard
Input).

<dt><b>-expand</b> <i>expand</i>

<dd>Output will be expanded on display by factor <i>expand</i> (For
example, a value of 2 will cause four pixels to be displayed for every
input pixel.)

<dt><b>-display</b> <i>display</i>

<dd>Output will be displayed on screen numbered <i>display</i>

</dl>

<h2 id="examples">EXAMPLES</h2>

To display a PPM file named <b>ppmfile</b> using the protocol:

<pre>
    ppmtoicr ppmfile
</pre>

This will create a window named <i>ppmfile</i> on the display with the
correct dimensions for <i>ppmfile</i>, create and download a colormap
of up to 256 colors, and download the picture into the window.  You
may achieve the same effect with the following sequence:

<pre>
    ppmtoicr ppmfile &gt; filename
    cat filename
</pre>

<p>To display a GIF file using the protocol in a window titled after the
input file, zoom the displayed image by a factor of 2, and run-length
encode the data:

<pre>
    giftopnm giffile | ppmtoicr -w giffile -r -e 2
</pre>

<h2 id="limitations">LIMITATIONS</h2>

<p>The protocol uses frequent fflush() calls to speed up display.  If
you save the output to a file for later display via <b>cat</b>,
<b>ppmtoicr</b> will draw much more slowly.  In either case,
increasing the blocksize limit on the display will speed up
transmission substantially.

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

<b><a href="ppm.html">ppm</a></b>

<p>NCSA Telnet for the Macintosh, University of Illinois at
Urbana-Champaign (1989)

<h2 id="history">HISTORY</h2>

<p>Until Netpbm 10.71 (June 2015), there was a <b>-rle</b> option documented,
which was said to cause the output to use run length encoding compression.
But because of a simple bug in option processing code, the option never had
any effect.  And the compression code did not look like it worked anyway and
would take a fair amount of work to fix.  Because it was unlikely anyone would
ever use this program again, much less want to use run length encoding, we
removed it from the documentation rather than fix the code.

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

Copyright (C) 1990 by Kanthan Pillay (<a
href="mailto:svpillay@Princeton.EDU">svpillay@Princeton.EDU</a>),
Princeton University Computing and Information Technology.

<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="#examples">EXAMPLES</a>
<li><a href="#limitations">LIMITATIONS</a>
<li><a href="#seealso">SEE ALSO</a>
<li><a href="#history">HISTORY</a>
<li><a href="#author">AUTHOR</a>
</ul>
</body>
</html>