5ad902a
diff --git a/userguide/pammixmulti.html b/userguide/pammixmulti.html
6520ba9
index 97cf412..d2a2ba0 100755
5ad902a
--- a/userguide/pammixmulti.html
5ad902a
+++ b/userguide/pammixmulti.html
6520ba9
@@ -2,13 +2,13 @@
6520ba9
 <html><head><title>Pammixmulti User Manual</title></head>
6520ba9
 <body>
6520ba9
 

pammixmulti

6520ba9
-Updated: 18 November 2018
6520ba9
-
6520ba9
+
6520ba9
+Updated: 18 November 2018
6520ba9
 Table Of Contents
6520ba9
   
6520ba9
 
6520ba9
-

NAME

6520ba9
-

pammixmulti - blend together multiple PAM images

6520ba9
+

NAME

6520ba9
+

pammixmulti - blend together multiple PAM images

6520ba9
 
6520ba9
 
6520ba9
 

SYNOPSIS

6520ba9
@@ -22,11 +22,11 @@ Updated: 18 November 2018
6520ba9
 

Minimum unique abbreviation of an option is acceptable. You can use a

6520ba9
 single hyphen instead of double hyphens to denote options. You can use white
6520ba9
 space in place of the equals sign to separate an option name from its
6520ba9
-value.
6520ba9
+value.

6520ba9
 
6520ba9
 
6520ba9
 

DESCRIPTION

6520ba9
-

This file is part of Netpbm.

6520ba9
+

This file is part of Netpbm.

6520ba9
 
6520ba9
 

pammixmulti mixes two or more images to produce a new image. The

6520ba9
 program provides multiple ways to interpret "mix."
6520ba9
@@ -37,7 +37,7 @@ program provides multiple ways to interpret "mix."
6520ba9
 

In addition to the options common to all programs based on libnetpbm

6520ba9
 (most notably -quiet, see 
6520ba9
 Common Options), pammixmulti recognizes the following
6520ba9
-command line options:
6520ba9
+command line options:

6520ba9
 
6520ba9
 
6520ba9
 
--blend=average|random|mask
6520ba9
@@ -50,7 +50,7 @@ output is produced by selecting the corresponding pixel from one of the input
6520ba9
 images, chosen at random on a per-pixel basis.  With
6520ba9
 --blend=mask, each pixel in the output is produced by a
6520ba9
 weighted average of the corresponding pixels from all the input images based
6520ba9
-on the grayscale level of an additional mask image.
6520ba9
+on the grayscale level of an additional mask image.

6520ba9
 
6520ba9
 
6520ba9
 
--maskfile=filename
6520ba9
@@ -60,7 +60,7 @@ grayscale mask file to control the blending of each pixel.  (If the file is
6520ba9
 not grayscale, the first channel is treated as gray).  Where the mask file is
6520ba9
 black, the first image is selected. Where the mask file is white, the last
6520ba9
 image is selected.  Intermediate levels of gray select intermediate
6520ba9
-images.
6520ba9
+images.

6520ba9
 
6520ba9
 
6520ba9
 
--stdev=number
6520ba9
@@ -77,7 +77,7 @@ that includes roughly equal amounts of the corresponding pixel from images 1
6520ba9
 and 2 but less of the corresponding pixel from image 3.  As number
6520ba9
 tends towards the number of input images (going beyond that has diminishing
6520ba9
 impact), the output tends to look more
6520ba9
-like --blend=average. number defaults to 0.25.
6520ba9
+like --blend=average. number defaults to 0.25.

6520ba9
 
6520ba9
 
6520ba9
 
--randomseed integer
6520ba9
@@ -91,39 +91,39 @@ like --blend=average. number defaults to 0.25.
6520ba9
 
6520ba9
 

ARGUMENTS

6520ba9
 
6520ba9
-

You supply the names of the files to mix as non-option arguments.

6520ba9
+

You supply the names of the files to mix as non-option arguments.

6520ba9
 
6520ba9
 
6520ba9
 

EXAMPLES

6520ba9
 
6520ba9
-

Average a bunch of PPM images to produce a new PAM image:

6520ba9
+

Average a bunch of PPM images to produce a new PAM image:

6520ba9
 
6520ba9
     pammixmulti input*.ppm >output.ppm
6520ba9
 
6520ba9
 
6520ba9
 

Mix these same images by taking each pixel from a randomly selected input

6520ba9
-image:
6520ba9
+image:

6520ba9
 
6520ba9
 
6520ba9
     pammixmulti --blend=random input*.ppm >output.ppm
6520ba9
 
6520ba9
 
6520ba9
 

Use a mask image to control the fading among input images on a

6520ba9
-pixel-by-pixel basis:
6520ba9
+pixel-by-pixel basis:

6520ba9
 
6520ba9
 
6520ba9
     pammixmulti --blend=mask --maskfile=mask.pgm >output.pam \
6520ba9
        one.pam two.pam three.pam four.pam
6520ba9
 
6520ba9
 
6520ba9
-

Do the same but with more abrupt transitions:

6520ba9
+

Do the same but with more abrupt transitions:

6520ba9
 
6520ba9
 
6520ba9
     pammixmulti --blend=mask --maskfile=mask.pgm --stdev=0.0 >output.pam \
6520ba9
        one.pam two.pam three.pam four.pam
6520ba9
 
6520ba9
 
6520ba9
-

and now with more gradual transitions:

6520ba9
+

and now with more gradual transitions:

6520ba9
 
6520ba9
 
6520ba9
     pammixmulti --blend=mask --maskfile=mask.pgm --stdev=1.0 >output.pam \
6520ba9
@@ -138,7 +138,7 @@ pixel-by-pixel basis:
6520ba9
 
6520ba9
 

AUTHOR

6520ba9
 
6520ba9
-

Copyright 2018 Scott Pakin, scott+pbm@pakin.org.

6520ba9
+

Copyright 2018 Scott Pakin, scott+pbm@pakin.org.

6520ba9
 
6520ba9
 

SEE ALSO

6520ba9
 
6520ba9
@@ -152,14 +152,14 @@ pixel-by-pixel basis:
6520ba9
 

Table Of Contents

6520ba9
 
6520ba9
 
    6520ba9
    -
  • SYNOPSIS
  • 6520ba9
    -
  • DESCRIPTION
  • 6520ba9
    -
  • OPTIONS
  • 6520ba9
    -
  • ARGUMENTS
  • 6520ba9
    -
  • EXAMPLES
  • 6520ba9
    -
  • HISTORY
  • 6520ba9
    -
  • AUTHOR
  • 6520ba9
    -
  • SEE ALSO
  • 6520ba9
    +
  • SYNOPSIS
  • 6520ba9
    +
  • DESCRIPTION
  • 6520ba9
    +
  • OPTIONS
  • 6520ba9
    +
  • ARGUMENTS
  • 6520ba9
    +
  • EXAMPLES
  • 6520ba9
    +
  • HISTORY
  • 6520ba9
    +
  • AUTHOR
  • 6520ba9
    +
  • SEE ALSO
  • 6520ba9
     
    6520ba9
     
    6520ba9
     </body>