summary refs log tree commit diff
path: root/pamcomp.html
blob: 25016e2b353b3de40113477c92165cf18f035533 (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
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 3.3//EN">
<html><head><title>Pamcomp User Manual</title></head>
<body>
<h1>pamcomp</h1>
Updated: 13 August 2011
<p>
<a href="#index">Table Of Contents</a>

<h2>NAME</h2>
pamcomp - composite (overlay) two Netpbm images together

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

<b>pamcomp</b>

[<b>-align=</b>{<b>left</b> | <b>center</b> | <b>right</b> |
<b>beyondleft</b> | <b>beyondright</b>}]
<br>
[<b>-valign=</b>{<b>top</b> | <b>middle</b> | <b>bottom</b>|
<b>above</b> | <b>below</b>}]
<br>
[<b>-xoff=</b><i>X</i>]
[<b>-yoff=</b><i>Y</i>]
<br>
[<b>-alpha=</b><i>alpha-pgmfile</i>]
[<b>-invert</b>]
[<b>-opacity=</b><i>opacity</i>]
[<b>-mixtransparency</b>]
[<b>-linear</b>]
<br>
<i>overlay_file</i>
[<i>underlying_file</i> [<i>output_file</i>]]

<p>Minimum unique abbreviation of option is acceptable.  You may use double
hyphens instead of single hyphen to denote options.  You may use white
space in place of the equals sign to separate an option name from its value.

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

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

<b>pamcomp</b> reads two images and produces a composite image with
one of the images overlayed on top of the other, possible
translucently.  The images need not be the same size.  The input and
outputs are Netpbm format image files.

<p>In its simplest use, <b>pamcomp</b> simply places the image in the
file <i>overlay_file</i> on top of the image in the file
<i>underlying_file</i>, blocking out the part of <i>underlying_file</i>
beneath it.

<p>If you add the <b>-alpha</b> option, then <b>pamcomp</b> uses the
image in file <i>alpha-pgmfile</i> as a transparency mask, which means it
determines the level of transparency of each point in the overlay
image.  The transparency mask must have the same dimensions as the overlay
image.  In places where the transparency mask defines the overlay image to be
opaque, the composite output contains only the contents of the overlay
image; the underlying image is totally blocked out.  In places where
the transparency mask defines the overlay image to be transparent, the
composite output contains none of the overlay image; the underlying
image shows through completely.  In places where the transparency mask shows
a value in between opaque and transparent (translucence), the
composite image contains a mixture of the overlay image and the
underlying image and the level of translucence determines how much of
each.

<p>The transparency mask is a PGM file in which a white pixel represents
opaqueness and a black pixel transparency.  Anything in between is
translucent.  (Like any Netpbm program, <b>pamcomp</b> will see a PBM
file as if it is PGM).

<p>If the overlay image is a PAM image of tuple type RGB_ALPHA or
GRAYSCALE_ALPHA, then the overlay image contains transparency
information itself and <b>pamcomp</b> uses it the same way as the
transparency mask described above.  If you supply both an overlay image that
has transparency information and a transparency mask, <b>pamcomp</b>
multiplies the two opacities to get the opacity of the overlay pixel.

<p>Before Netpbm 10.25 (October 2004), <b>pamcomp</b> did not recognize the
transparency information in a PAM image -- it just ignored it.  So people had
to make appropriate transparency masks in order to have a non-opaque overlay.  Some
Netpbm programs that convert from image formats that contain transparency
information are not able to create RGB_ALPHA or GRAYSCALE_ALPHA PAM output, so
you have to use the old method -- extract the transparency information from
the original into a separate transparency mask and use that as input to
<b>pamcomp</b>.

<p>The output image is always of the same dimensions as the underlying
image.  <b>pamcomp</b> uses only parts of the overlay image that fit
within the underlying image.

<p>The output image is a PAM image.  Its tuples are color, grayscale, or black
and white, whichever is the "highest" format between the two input
images.  The maxval of the output is the least common multiple of the maxvals
of the input, up to the maximum possible PAM maxval, 65535.

<p>The output has an opacity channel if and only if the underlying image does,
and then the opacities are as described under the <b>-mixtransparency</b>
option.  Before Netpbm 10.56 (September 2011), the output never has an opacity
channel.

<p>To specify where on the underlying image to place the overlay
image, use the <b>-align</b>, <b>-valign</b>, <b>-xoff</b>, and
<b>-yoff</b> options.  Without these options, the default horizontal
position is flush left and the default vertical position is flush top.

<p>The overlay image, in the position you specify, need not fit entirely
within the underlying image.  <b>pamcomp</b> uses only the parts of the
overlay image that appear above the underlying image.  It is possible to
specify positioning such that <em>none</em> of the overlay image is 
over the underlying image -- i.e. the overlay is out of frame.  If you
do that, <b>pamcomp</b> issues a warning.

<p> The overlay and underlying images may be of different formats
(e.g. overlaying a PBM text image over a full color PPM image) and
have different maxvals.  The output image has the more general of the
two input formats and a maxval that is the least common multiple the
two maxvals (or the maximum maxval allowable by the format, if the LCM
is more than that).


<h2 id="arguments">ARGUMENTS</h2>

<p>The <i>overlay_file</i> argument is the name of the file containing the
  overly image, while <i>underlying_file</i> is the name of the file
  containing the underlying image.  For either, you may specify &quot;-&quot;
  to indicate Standard Input, and <i>underlying</i> file defaults to Standard
  Input.  Make sure you aren't specifying (or defaulting) Standard Input as
  both.

<p>Note that there may be a third input file, identified by an
<b>-alphafile</b> option.


<p>The <i>output_file</i> argument is the name of the file to which
  <b>pamcomp</b> writes the output, creating or truncating it first.  You may
  specify &quot;-&quot; to indicate Standard Output, in which
  case <b>pamcomp</b> does not truncate it.  Note that <b>pamcomp</b> is
  unusual among Netpbm programs, as a historical accident, in having an output
  file argument; Netpbm programs normally write to Standard Output only.
  
  
<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>pamcomp</b> recognizes the following
command line options:

<dl compact>
<dt><b>-align=</b><i>alignment</i>
<dd>
This option selects the basic horizontal position of the overlay image
with respect to the underlying image, in syntax reminiscent of HTML.
<b>left</b> means flush left, <b>center</b> means centered, and <b>right</b>
means flush right.

<p>The <b>-xoff</b> option modifies this position.

<b>beyondleft</b> means just out of frame to the left -- the right edge of
the overlay is flush with the left edge of the underlying image.  
<b>beyondright</b> means just out of frame to the right.  These alignments
are useful only if you add a <b>-xoff</b> option.    These two values were
added in Netpbm 10.10 (October 2002).

<p>The default is <b>left</b>.

<dt><b>-valign=</b><i>alignment</i>
<dd>

This option selects the basic vertical position of the overlay image
with respect to the underlying image, in syntax reminiscent of HTML.
<b>top</b> means flush top, <b>middle</b> means centered, and <b>bottom</b>
means flush bottom.

<p>The <b>-yoff</b> option modifies this position.

<b>above</b> means just out of frame to the top -- the bottom edge of
the overlay is flush with the top edge of the underlying image.  
<b>below</b> means just out of frame to the bottom.  These alignments
are useful only if you add a <b>-yoff</b> option.  These two values were
added in Netpbm 10.10 (October 2002).

<p>The default is <b>top</b>.

<dt><b>-xoff=</b><i>x</i>

<dd>This option modifies the horizontal positioning of the overlay
image with respect to the underlying image as selected by the
<b>-align</b> option.  <b>pamcomp</b> shifts the overlay image from
that basic position <i>x</i> pixels to the right.  <i>x</i> can be
negative to indicate shifting to the left.

<p>The overlay need not fit entirely (or at all) on the underlying image.
<b>pamcomp</b> uses only the parts that lie over the underlying image.

<p>Before Netpbm 10.10 (October 2002), <b>-xoff</b> was mutually 
exclusive with <b>-align</b> and always measured from the left edge.

<dt><b>-yoff=</b><i>y</i>

<dd>This option modifies the vertical positioning of the overlay
image with respect to the underlying image as selected by the
<b>-valign</b> option.  <b>pamcomp</b> shifts the overlay image from
that basic position <i>y</i> pixels downward.  <i>y</i> can be
negative to indicate shifting upward.

<p>The overlay need not fit entirely (or at all) on the underlying image.
<b>pamcomp</b> uses only the parts that lie over the underlying image.

<p>Before Netpbm 10.10 (October 2002), <b>-xoff</b> was mutually 
exclusive with <b>-valign</b> and always measured from the top edge.

<dt><b>-alpha=</b><i>alpha-pgmfile</i>
<dd>
This option names a file that contains the transparency mask.  If you don't
specify this option, there is no transparency mask, which is equivalent to 
having a transparency mask specify total opaqueness everywhere.
<p>
You can specify <b>-</b> as the value of this option and the transparency
mask will come from Standard Input.  If you do this, don't specify
Standard Input as the source of any other input image.

<dt><b>-invert</b>
<dd>
This option inverts the sense of the values in the transparency mask, which 
effectively switches the roles of the overlay image and the underlying
image in places where the two intersect.

<dt><b>-opacity=</b><i>opacity</i>
<dd>
This option tells how opaque the overlay image is to be, i.e. how much
of the composite image should be from the overlay image, as opposed to
the underlying image.  <i>opacity</i> is a floating point number, with
1.0 meaning the overlay image is totally opaque and 0.0 meaning it is
totally transparent.  The default is 1.0.

<p>If you specify a transparency mask (the <b>-alpha</b> option),
<b>pamcomp</b> uses the product of the opacity indicated by the transparency
mask (as modified by the <b>-invert</b> option, as a fraction, and
this opacity value.  The <b>-invert</b> option does not apply to this
opacity value.

<p>As a simple opacity value, the value makes sense only if it is
between 0 and 1, inclusive.  However, <b>pamcomp</b> accepts all
values and performs the same arithmetic computation using whatever
value you provide.  An opacity value less than zero means the underlay
image is intensified and then the overlay image is "subtracted" from
it.  An opacity value greater than unity means the overlay image is
intensified and the underlay image subtracted from it.  In either
case, <b>pamcomp</b> clips the resulting color component intensities
so they are nonnegative and don't exceed the output image's maxval.

<p>This may seem like a strange thing to do, but it has uses.  You can use it
to brighten or darken or saturate or desaturate areas of the underlay image.
See <a href="extendedopacity.html"> this description</a> of the technique.
     
<p>This option was added in Netpbm 10.6 (July 2002).  Before Netpbm 10.15
(April 2003), values less than zero or greater than unity were not allowed.

<dt><b>-mixtransparency</b>
<dd>
This option controls what <b>pamcomp</b> does where both the underlying and
overlay image are non-opaque.

<p>By default, the output image has the same transparency as the underlying
image and the transparency of the underlying image has no effect on the
composition of color.

<p>But with this option, <b>pamcomp</b> composes the image according to a
plastic transparency metaphor: the underlying and overlay images are plastic
slides.  The output image is the slide you get when you stack up those two
slides.  So the transparency of the output is a combination of the
transparency of the inputs and the transparency of the underlying image
affects the underlying image's contribution to the output image's color.

<p>Unlike the metaphorical slide, a PAM pixel has a color even where it is
completely transparent, so <b>pamcomp</b> departs from the metaphor in that
case and makes the output color identical to the underlying image.

<p>This option was new in Netpbm 10.56 (September 2011).  Before that, the
output is always opaque and the <b>pamcomp</b> ignores the transparency of the
underlying image.

<dt><b>-linear</b>

<dd>This option indicates that the inputs are not true Netpbm images but
rather a light-intesity-proportional variation.  This is relevant only when
you mix pixels, using the <b>-opacity</b> option or a transparency mask
(the <b>-alpha</b> option).

<p>The transparency mask and <b>-opacity</b> values indicate a fraction of
the light intensity of a pixel.  But the PNM and PNM-equivalent PAM
image formats represent intensities with gamma-adjusted numbers that
are not linearly proportional to intensity.  So <b>pamcomp</b>, by
default, performs a calculation on each sample read from its input and
each sample written to its output to convert between these
gamma-adjusted numbers and internal intensity-proportional numbers.

<p>Sometimes you are not working with true PNM or PAM images, but
rather a variation in which the sample values are in fact directly
proportional to intensity.  If so, use the <b>-linear</b> option to
tell <b>pamcomp</b> this.  <b>pamcomp</b> then will skip the
conversions.

<p>The conversion takes time.  And the difference between
intensity-proportional values and gamma-adjusted values may be small
enough that you would barely see a difference in the result if you
just pretended that the gamma-adjusted values were in fact
intensity-proportional.  So just to save time, at the expense of some
image quality, you can specify <b>-linear</b> even when you have true
PPM input and expect true PPM output.

<p>For the first 13 years of Netpbm's life, until Netpbm 10.20
(January 2004), <b>pamcomp</b>'s predecessor <b>pnmcomp</b> always
treated the PPM samples as intensity-proportional even though they
were not, and drew few complaints.  So using <b>-linear</b> as a lie
is a reasonable thing to do if speed is important to you.

<p>Another technique to consider is to convert your PNM image to the
linear variation with <b>pnmgamma</b>, run <b>pamcomp</b> on it and
other transformations that like linear PNM, and then convert it back
to true PNM with <b>pnmgamma -ungamma</b>.  <b>pnmgamma</b> is often
faster than <b>pamcomp</b> in doing the conversion.

</dl>


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

<p><b><a href="pammixmulti.html">pammixmulti.html</a></b> mixes together
two or more images of the same size, in various ways.

<p><b><a href="ppmmix.html">ppmmix</a></b> and <b><a
href="pnmpaste.html">pnmpaste</a></b> are simpler, less general
versions of the same tool.

<p><b><a href="ppmcolormask.html">ppmcolormask</a></b> and <b><a
href="pbmmask.html">pbmmask</a></b>, and <a
href="pambackground.html"><b>pambackground</b></a> can help with
generating a transparency mask.

<p><b><a href="pnmcomp.html">pnmcomp</a></b> is an older program that
runs faster, but has less function.

<p><b><a href="pnm.html">pnm</a></b>


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

<p><b>pamcomp</b> was new in Netpbm 10.21 (March 2004).  Its predecessor,
<b>pnmcomp</b>, was one of the first programs added to Netpbm when the
project went global in 1993.


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

Copyright (C) 1992 by David Koblas (<a
href="mailto:koblas@mips.com">koblas@mips.com</a>).

<hr>
<h2 id="index">Table Of Contents</h2>
<ul>
<li><a href="#synopsis">SYNOPSIS</a>
<li><a href="#description">DESCRIPTION</a>
<li><a href="#arguments">ARGUMENTS</a>
<li><a href="#options">OPTIONS</a>
<li><a href="#seealso">SEE ALSO</a>
<li><a href="#history">HISTORY</a>
<li><a href="#author">AUTHOR</a>
</ul>
</body>
</html>