diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-15 19:43:11 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-15 19:43:11 +0000 |
commit | fc22b3d6507c6745911b9dfcc68f1e665ae13dbc (patch) | |
tree | ce1e3bce06471410239a6f41282e328770aa404a /upstream/opensuse-leap-15-6/man1/ppmpat.1 | |
parent | Initial commit. (diff) | |
download | manpages-l10n-fc22b3d6507c6745911b9dfcc68f1e665ae13dbc.tar.xz manpages-l10n-fc22b3d6507c6745911b9dfcc68f1e665ae13dbc.zip |
Adding upstream version 4.22.0.upstream/4.22.0
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'upstream/opensuse-leap-15-6/man1/ppmpat.1')
-rw-r--r-- | upstream/opensuse-leap-15-6/man1/ppmpat.1 | 202 |
1 files changed, 202 insertions, 0 deletions
diff --git a/upstream/opensuse-leap-15-6/man1/ppmpat.1 b/upstream/opensuse-leap-15-6/man1/ppmpat.1 new file mode 100644 index 00000000..d168dfef --- /dev/null +++ b/upstream/opensuse-leap-15-6/man1/ppmpat.1 @@ -0,0 +1,202 @@ +\ +.\" This man page was generated by the Netpbm tool 'makeman' from HTML source. +.\" Do not hand-hack it! If you have bug fixes or improvements, please find +.\" the corresponding HTML page on the Netpbm website, generate a patch +.\" against that, and send it to the Netpbm maintainer. +.TH "Ppmpat User Manual" 0 "2 March 2016" "netpbm documentation" + +.SH NAME + +ppmpat - make a pretty PPM image + +.UN synopsis +.SH SYNOPSIS + +\fBppmpat\fP +{\fB-gingham2\fP|\fB-g2\fP} | +{\fB-gingham3\fP|\fB-g3\fP} | +\fB-madras\fP | +\fB-tartan\fP | +\fB-poles\fP | +\fB-squig\fP | +\fB-camo\fP | +\fB-anticamo\fP +\fB-argyle1\fP +\fB-argyle2\fP +[\fB-color\fP \fIcolorlist\fP +[\fB-randomseed\fP \fIinteger\fP] + +\fIwidth\fP \fIheight\fP +.PP +You can abbreviate any option to its shortest unique prefix. + +.UN description +.SH DESCRIPTION +.PP +This program is part of +.BR "Netpbm" (1)\c +\&. +.PP +\fBppmpat\fP produces a PPM of the specified width and height, +with a pattern in it. +.PP +You could, for example, use it to create wallpaper for a computer screen. +.PP +One use of this program is as an example of the Netpbm library +.BR "drawing" (3)\c +\& functions, which it uses. +.PP +Some of the patterns have large numbers of colors, so if you want +a simpler pattern, use \fBpnmquant\fP on the output. + +.UN options +.SH OPTIONS +.PP +The options specify various pattern types: + + +.TP +\fB-gingham2\fP +A gingham check pattern. Can be tiled. +.sp +If you specify -color, give two colors: background and foreground, in that +order. + +.TP +\fB-gingham3\fP +A slightly more complicated gingham. Can be tiled. +.sp +If you specify -color, give three colors: background and two foregrounds, +in that order. + +.TP +\fB-madras\fP +A madras plaid. Can be tiled. +.sp +If you specify -color, give three colors: background and two foregrounds, +in that order. + +.TP +\fB-tartan\fP +A tartan plaid. Can be tiled. +.sp +If you specify -color, give three colors: background and two foregrounds, +in that order. + +.TP +\fB-poles\fP +Color gradients centered on randomly-placed poles. +.sp +If you specify -color, give two or more colors. + +.TP +\fB-squig\fP +Squiggley tubular pattern. Can be tiled. +.sp +If you specify -color, give three or more colors. The first is the +background color. + +.TP +\fB-camo\fP +Camouflage pattern. +.sp +If you specify \fB-color\fP, give three or more colors. The first is the +background color; the others are colors for the leafy foreground shapes. +The foreground shapes will probably occupy nearly the entire image, so that the +background color is barely visible. + +.TP +\fB-anticamo\fP +Anti-camouflage pattern - like -camo, but ultra-bright colors. +.sp +If you specify \fB-color\fP, this is the same as \fB-camo\fP. + +.TP +\fB-argyle1\fP +A diamond argyle pattern, without a cross through the diamond, with one +diamond. Can be tiled. +.sp +If you specify -color, give two colors: background and foreground, in that +order. +.sp +This option was new in Netpbm 10.78 (March 2017). + +.TP +\fB-argyle2\fP +A diamond argyle pattern, with a cross through the diamond, with one +diamond. Can be tiled. +.sp +If you specify -color, give three colors: background, foreground, and +stripe, in that order. +.sp +This option was new in Netpbm 10.78 (March 2017). + +.TP +\fB-color\fP \fIcolorlist\fP +This specifies the colors to appear in the pattern. +.sp +If you do not specify this option, \fBppmpat\fP chooses colors at random. +.sp +Different patterns take different numbers of colors. Some can involve +variable numbers of colors. If you specify a number of colors incompatible +with the pattern you specify, \fBppmpat\fP fails, telling you how many colors +to specify. +.sp +\fIcolorlist\fP is a comma-separated list of colors. +.sp +Specify each color as described for the +.UR libppm.html#colorname +argument of the \fBppm_parsecolor()\fP library routine +.UE +\&. +.sp +Example: \fB-color red, green, rgbi:1.0/0.5/.25\fP . +.sp +This option was new in Netpbm 10.78 (March 2017). + +.TP +\fB-randomseed\fP \fIinteger\fP +This is the seed for the random number generator that generates the +pixels. +.sp +Use this to ensure you get the same image on separate invocations. +.sp +By default, \fBppmpat\fP uses a seed derived from the time of day +and process ID, which gives you fairly uncorrelated results in multiple +invocations. +.sp +This option was new in Netpbm 10.61 (December 2012). + + + +.UN references +.SH REFERENCES + +Some of the patterns are from "Designer's Guide to Color 3" +by Jeanne Allen. + +.UN seealso +.SH SEE ALSO +.BR "pnmtile" (1)\c +\&, +.BR "pnmquant" (1)\c +\&, +.BR "ppmmake" (1)\c +\&, +.BR "ppmrainbow" (1)\c +\&, +.BR "pamgradient" (1)\c +\&, +.BR "ppm" (5)\c +\& + +.UN author +.SH AUTHOR + +Copyright (C) 1989 by Jef Poskanzer. +.SH DOCUMENT SOURCE +This manual page was generated by the Netpbm tool 'makeman' from HTML +source. The master documentation is at +.IP +.B http://netpbm.sourceforge.net/doc/ppmpat.html +.PP
\ No newline at end of file |