diff -urNp a/userguide/avstopam.html b/userguide/avstopam.html --- a/userguide/avstopam.html 2021-06-02 12:56:59.584286425 +0200 +++ b/userguide/avstopam.html 2021-06-02 15:00:33.799300026 +0200 @@ -2,12 +2,13 @@ Avstopam User Manual

avstopam

-Updated: 07 February 2010 -
-Table Of Contents + +

Updated: 07 February 2010

+ +

Table Of Contents

NAME

-

avstopam - convert an AVS X image to a Netpbm image +

avstopam - convert an AVS X image to a Netpbm image

SYNOPSIS

@@ -16,40 +17,40 @@ Updated: 07 February 2010

DESCRIPTION

-

This program is part of Netpbm. +

This program is part of Netpbm.

avstopam reads a Stardent AVS X image as input and produces a Netpbm -image as output. +image as output.

avsfile is the input file, which defaults to Standard Input. -Output is always on Standard Output. +Output is always on Standard Output.

OPTIONS

There are no command line options defined specifically for avstopam, but it recognizes the options common to all programs based on libnetpbm (See -Common Options.) +Common Options.)

AUTHOR

Copyright © 2010 Scott Pakin, -scott+pbm@pakin.org +scott+pbm@pakin.org

SEE ALSO

-

pamtoavs, pam +

pamtoavs, pam


Table Of Contents

diff -urNp a/userguide/faxformat.html b/userguide/faxformat.html --- a/userguide/faxformat.html 2021-06-02 12:56:59.576286351 +0200 +++ b/userguide/faxformat.html 2021-06-02 15:02:58.710711998 +0200 @@ -5,10 +5,11 @@ Updated: 03 December 2008
+

SYNOPSIS

This page, part of the Netpbm user's guide, describes FAX formats in relation to Netpbm facilities. - +

DESCRIPTION

The ITU (formerly CCITT) publishes standards for operation of fax machines (the idea is to provide a way to be sure that a fax machine is able to receive a fax sent by another). These standards incidentally specify graphics file diff -urNp a/userguide/libnetpbm_ug.html b/userguide/libnetpbm_ug.html --- a/userguide/libnetpbm_ug.html 2021-06-02 12:56:59.584286425 +0200 +++ b/userguide/libnetpbm_ug.html 2021-06-02 14:36:35.392293125 +0200 @@ -374,7 +374,7 @@ plain format.

Reference

The Libnetpbm Netpbm Image -Processing Manual describes the the libnetpbm functions for +Processing Manual describes the libnetpbm functions for processing image data.

The Libnetpbm Utility Manual diff -urNp a/userguide/pamfunc.html b/userguide/pamfunc.html --- a/userguide/pamfunc.html 2021-06-02 12:56:59.585286434 +0200 +++ b/userguide/pamfunc.html 2021-06-02 14:40:09.474375441 +0200 @@ -60,7 +60,7 @@ output image. and bit string (such as and with 01001000). For the arithmetic functions, the function arguments and results are the fraction that a sample is of the maxval, i.e. normal interpretation of PAM tuples. But for the bit string -functions, the value is the the bit string whose value as a binary cipher is +functions, the value is the bit string whose value as a binary cipher is the sample value, and the maxval indicates the width of the bit string.

Arithmetic functions

diff -urNp a/userguide/pammixmulti.html b/userguide/pammixmulti.html --- a/userguide/pammixmulti.html 2021-06-02 12:56:59.586286443 +0200 +++ b/userguide/pammixmulti.html 2021-06-02 14:28:03.105311615 +0200 @@ -7,8 +7,8 @@ Updated: 18 November 2018 Table Of Contents -

NAME

-

pammixmulti - blend together multiple PAM images +

NAME

+

pammixmulti - blend together multiple PAM images

SYNOPSIS

@@ -22,14 +22,14 @@ Updated: 18 November 2018

Minimum unique abbreviation of an option is acceptable. You can use a single hyphen instead of double hyphens to denote options. You can use white space in place of the equals sign to separate an option name from its -value. +value.

DESCRIPTION

-

This file is part of Netpbm. +

This file is part of Netpbm.

pammixmulti mixes two or more images to produce a new image. The -program provides multiple ways to interpret "mix." +program provides multiple ways to interpret "mix."

OPTIONS

@@ -37,7 +37,7 @@ program provides multiple ways to interp

In addition to the options common to all programs based on libnetpbm (most notably -quiet, see Common Options), pammixmulti recognizes the following -command line options: +command line options:

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

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

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

--randomseed integer @@ -85,45 +85,45 @@ like --blend=average. numberThis is the seed for the random number generator used with --blend=random -

Use this to ensure you get the same image on separate invocations. +

Use this to ensure you get the same image on separate invocations.

ARGUMENTS

-

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

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

EXAMPLES

-

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

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


     pammixmulti input*.ppm >output.ppm
 

Mix these same images by taking each pixel from a randomly selected input -image: +image:


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

Use a mask image to control the fading among input images on a -pixel-by-pixel basis: +pixel-by-pixel basis:


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

Do the same but with more abrupt transitions: +

Do the same but with more abrupt transitions:


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

and now with more gradual transitions: +

and now with more gradual transitions:


     pammixmulti --blend=mask --maskfile=mask.pgm --stdev=1.0 >output.pam \
@@ -133,12 +133,12 @@ pixel-by-pixel basis:
 
 

HISTORY

-

pammixmulti was new in Netpbm 10.85 (December 2018). +

pammixmulti was new in Netpbm 10.85 (December 2018).

AUTHOR

-

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

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

SEE ALSO

@@ -146,20 +146,20 @@ pixel-by-pixel basis: ppmmix, pamarith, pnm, -pam +pam

Table Of Contents

diff -urNp a/userguide/pampaintspill.html b/userguide/pampaintspill.html --- a/userguide/pampaintspill.html 2021-06-02 12:56:59.575286342 +0200 +++ b/userguide/pampaintspill.html 2021-06-02 15:06:31.354767352 +0200 @@ -2,12 +2,12 @@ Pampaintspill User Manual

pampaintspill

-Updated: 06 March 2021 +

Updated: 06 March 2021
-Table Of Contents +Table Of Contents

NAME

-pampaintspill - smoothly spill colors into the background +

pampaintspill - smoothly spill colors into the background

SYNOPSIS

@@ -17,17 +17,17 @@ pampaintspill - smoothly spill colors in [--wrap] [--all] [--downsample=number] [--power=number] [filename] -[-randomseed=integer] +[-randomseed=integer]

Minimum unique abbreviations of option are 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. +from its value.

DESCRIPTION

-

This program is part of Netpbm. +

This program is part of Netpbm.

pampaintspill produces a smooth color gradient from all of the non-background-colored pixels in an input image, effectively "spilling @@ -38,27 +38,27 @@ paint" onto the background. pampaint

  • pampaintspill accepts any number of paint sources (non-background-colored pixels), which can lie anywhere on the canvas. pamgradient accepts exactly - four paint sources, one in each corner of the image. + four paint sources, one in each corner of the image.
  • pampaintspill requires an input image while pamgradient generates a new image from - scratch. + scratch.
  • pampaintspill can produce tileable output and can control how tightly the gradient colors bind to their source - pixels. + pixels.
  • Results are generally best when the input image contains just a few, crisp spots of color. Use your drawing program's pencil tool — as opposed to a -paintbrush or airbrush tool — with a small nib. +paintbrush or airbrush tool — with a small nib.

    OPTIONS

    In addition to the options common to all programs based on libnetpbm (most notably -quiet, see Common Options), pampaintspill recognizes the following -command line options: +command line options:

    --bgcolor=color
    @@ -107,42 +107,42 @@ command line options:
    This is the seed for the random number generator that generates the pixels. -

    Use this to ensure you get the same image on separate invocations. +

    Use this to ensure you get the same image on separate invocations.

    -

    This option was new in Netpbm 10.94 (March 2021). +

    This option was new in Netpbm 10.94 (March 2021).

    SEE ALSO

    HISTORY

    -

    pampaintspill was new in Netpbm 10.50 (March 2010). +

    pampaintspill was new in Netpbm 10.50 (March 2010).

    Copyright © 2010 Scott Pakin, -scott+pbm@pakin.org. +scott+pbm@pakin.org.

    Table Of Contents

    diff -urNp a/userguide/pamrecolor.html b/userguide/pamrecolor.html --- a/userguide/pamrecolor.html 2021-06-02 12:56:59.574286333 +0200 +++ b/userguide/pamrecolor.html 2021-06-02 15:09:53.837724488 +0200 @@ -2,9 +2,9 @@ Pamrecolor User Manual

    pamrecolor

    -Updated: 31 July 2010 +

    Updated: 31 July 2010
    -Table Of Contents +Table Of Contents

    NAME

    pamrecolor - alter colors without affecting luminance @@ -22,15 +22,15 @@ pamrecolor - alter colors without affect [-randomseed=integer] [infile] - +

    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. +space in place of the equals sign to separate an option name from its value.

    DESCRIPTION

    -

    This program is part of Netpbm. +

    This program is part of Netpbm.

    pamrecolor changes an image's colors to be as close as possible to given target colors but with the constraint that the @@ -39,17 +39,17 @@ image will look identical if both are co (e.g. with ppmtopgm). You can have pamrecolor select target colors randomly, specify a single hue for the entire image, or take the -target colors from a target image. +target colors from a target image.

    In addition to real Netpbm images, pamrecolor works on pseudo-Netpbm images based on arbitrary color spaces. You can define the color space -explicitly or choose one of many that pamrecolor knows by name. +explicitly or choose one of many that pamrecolor knows by name.

    The output is a PAM image on standard output. Options control the exact format of the PAM. If you want a PNM (PBM, PGM, or PPM) image, use pamtopnm on the output. There is no need to convert if you will use the image as input to a current Netpbm -program, but many other programs don't know what a PAM is. +program, but many other programs don't know what a PAM is.

    OPTIONS

    @@ -57,7 +57,7 @@ program, but many other programs don't k

    In addition to the options common to all programs based on libnetpbm (most notably -quiet, see Common Options), pamrecolor recognizes the following -command line options: +command line options:

    @@ -76,9 +76,9 @@ the raster have different meaning. Many images actually use a variation with a different color space. For example, GIMP uses sRGB internally and if you have GIMP generate a Netpbm image file, it really generates a variation of -the format that uses sRGB. +the format that uses sRGB.

    -

    pamrecolor knows the following color spaces (name values): +

    pamrecolor knows the following color spaces (name values):

    adobe
    @@ -109,7 +109,7 @@ the format that uses sRGB.

    The default is "ntsc" because this is the color space that the Netpbm formats and many graphics utilities use. As a counterexample, GIMP uses sRGB as its native color -space. +space.

    The luminance values pamrecolor uses for each of the above come from Bruce Lindbloom's diff -urNp a/userguide/pbmtog3.html b/userguide/pbmtog3.html --- a/userguide/pbmtog3.html 2021-06-02 12:56:59.585286434 +0200 +++ b/userguide/pbmtog3.html 2021-06-02 14:44:07.715692749 +0200 @@ -36,7 +36,7 @@ use those encodings.

    In addition to the options common to all programs based on libnetpbm (most notably -quiet, see Common Options), pbmtog3 recognizes the following -command line options: +command line options:

    -reversebits @@ -80,7 +80,7 @@ You cannot specify both.

    HISTORY

    Before Netpbm 10.79 (June 2017), there was a different program by the same -name in Netpbm, which was written by by Paul Haeberli +name in Netpbm, which was written by Paul Haeberli <paul@manray.sgi.com> in 1989 and then modified extensively by others. diff -urNp a/userguide/ppmtogif.html b/userguide/ppmtogif.html --- a/userguide/ppmtogif.html 2021-06-02 12:56:59.574286333 +0200 +++ b/userguide/ppmtogif.html 2021-06-02 15:48:19.167930575 +0200 @@ -5,17 +5,17 @@

    NAME

    -ppmtogif - replaced by pamtogif - -

    DESCRIPTION

    +

    ppmtogif - replaced by pamtogif

    This program is part of Netpbm. +

    SYNOPSIS

    ppmtogif was replaced in Netpbm 10.37 (December 2006) by pamtogif.

    pamtogif is mostly backward compatible with ppmtogif. +

    DESCRIPTION

    One way pamtogif is not backward compatible with ppmtogif is that to specify a transparency (alpha) mask with ppmtogif, you supply the transparency as a separate pseudo-PGM image and use the