about summary refs log tree commit diff
diff options
context:
space:
mode:
-rw-r--r--bmptopnm.html5
-rw-r--r--directory.html8
-rw-r--r--palmtopnm.html1
-rw-r--r--pamtopdbimg.html101
-rw-r--r--pdbimgtopam.html76
-rw-r--r--pnmconvol.html2
-rw-r--r--pnmtopalm.html1
-rw-r--r--pnmtotiff.html1
8 files changed, 193 insertions, 2 deletions
diff --git a/bmptopnm.html b/bmptopnm.html
index 0685022a..e16eb3a2 100644
--- a/bmptopnm.html
+++ b/bmptopnm.html
@@ -2,7 +2,7 @@
 <HTML><HEAD><TITLE>Bmptopnm User Manual</TITLE></HEAD>
 <BODY>
 <H1>bmptopnm</H1>
-Updated: 24 February 2006
+Updated: 20 September 2010
 <BR>
 <A HREF="#index">Table Of Contents</A>
 
@@ -12,6 +12,9 @@ bmptopnm - convert a BMP file into a PBM, PGM, or PNM image
 <H2 id="synopsis">SYNOPSIS</H2>
 
 <B>bmptopnm</B>
+
+[<b>-verbose</b>]
+
 [<I>bmpfile</I>]
 
 <H2 id="description">DESCRIPTION</H2>
diff --git a/directory.html b/directory.html
index ef2514e7..f5bec620 100644
--- a/directory.html
+++ b/directory.html
@@ -122,6 +122,14 @@ convert Palm pixmap to Netpbm formats
 <DD>
 convert Netpbm formats to Palm pixmap
 
+<DT><B><a href=pdbimgtopam.html>pdbimgtopam</a>    </B>
+<DD>
+convert Palm Pilot Image Viewer format to Netpbm formats.
+
+<DT><B><a href=pamtopdbimg.html>pamtopdbimg</a>    </B>
+<DD>
+convert Netpbm formats to Palm Pilot Image Viewer format
+
 <DT><B><a href=ddbugtopbm.html>ddbugtopbm</a>    </B>
 <DD>
 convert Palm DiddleBug image to PBM
diff --git a/palmtopnm.html b/palmtopnm.html
index c62d22d1..fae3a66f 100644
--- a/palmtopnm.html
+++ b/palmtopnm.html
@@ -98,6 +98,7 @@ write a histogram of colors in the input file to Standard Error.
 <H2 id="seealso">SEE ALSO</H2>
 
 <B><A HREF="pnmtopalm.html">pnmtopalm</A></B>,
+<B><A HREF="pamtopdbimg.html">pamtopdbimg</A></B>,
 
 <A HREF="pnm.html">pnm</A>,
 
diff --git a/pamtopdbimg.html b/pamtopdbimg.html
new file mode 100644
index 00000000..2d2aab02
--- /dev/null
+++ b/pamtopdbimg.html
@@ -0,0 +1,101 @@
+<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML><HEAD><TITLE>Pamtopdbimg User Manual</TITLE></HEAD>
+<BODY>
+<H1>pamtopdbimg</H1>
+Updated: 25 September 2010
+<BR>
+<A HREF="#index">Table Of Contents</A>
+
+<H2>NAME</H2>
+
+pamtodbimg - convert a Netpbm image to a Palm Pilot Image Viewer PDB Image
+
+<H2 id="synopsis">SYNOPSIS</H2>
+
+<B>pamtopdbimg</B>
+
+[<b>-notefile=</b><i>filename</i>]
+[<b>-title=</b><i>text</i>]
+[<b>-compressed</b>]
+[<b>-uncompressed</b>]
+[<b>-maybecompressed</b>]
+[<b>-4depth</b>]
+
+[<I>netpbmfile</I>]
+
+<H2 id="description">DESCRIPTION</H2>
+
+<p>This program is part of <a href="index.html">Netpbm</a>.
+
+<p><b>pamtopdbimg</b> reads a Netpbm image as input and produced a Palm Pilot
+Image Viewer image (and Image record in a PDB file) as output.
+
+<p>If the Neptbm image is black and white, the Pilot image is monochrome.
+Otherwise, the Pilot image is either 4-level or 16-level grayscale, depending
+on the <b>-4depth</b> option.
+
+
+<H2 id="options">OPTIONS</H2>
+
+<DL COMPACT>
+
+<DT><B>-title=</B><i>text</i>
+
+<DD>
+The title of the image, to be included in the image.
+
+<DT><B>-compressed</B>
+<DT><B>-uncompressed</B>
+<DT><B>-maybecompressed</B>
+
+<DD>You may specify only one of these.
+<b>-compressed</b> says to generate the image in compressed format.
+<b>-uncompressed</b> says to generate the image in uncompressed format.
+<b>-maybecompressed</b> sasy to generate whichever format is smaller
+(the compression algorithm sometimes actually makes the data larger).
+
+<DT><B>-4depth</B>
+
+<DD>
+This option makes <b>pamtopdbimg</b> create the image in 16-level
+grayscale (4 bits per pixel) format.  If you don't specify this,
+<b>pamtopdbimg</b> uses 4-level (2 bits per pixel) format.
+
+<p>This option has no effect when the input is black and white
+(maxval 1).  In that case, <b>pamtopdbimg</b> generates the monochrome
+(1 bit per pixel) format regardless.
+
+<DT><B>-notefile=</B><i>filename</i>
+
+<DD>
+Attach the note in the specified file to the image.
+<p>
+If you don't specify this, <b>pamtopdbimg</b> does not attach any note.
+
+</DL>
+
+<H2 id="seealso">SEE ALSO</H2>
+
+<B><A HREF="pdbimgtopam.html">pdbimgtopam</A></B>,
+<B><A HREF="palmtopnm.html">palmtopnm</A></B>,
+
+<A HREF="pam.html">pam</A>,
+
+<h2 id="history">HISTORY</h2>
+
+<p><b>pamtopdbimg</b> was new in Netpbm 10.52 (September 2010).
+It was modelled after Eric A. Howe's <b>imgvtopbm</b> package, which
+dates back to September 1997.
+
+
+<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="#seealso">SEE ALSO</A>
+<LI><A HREF="#history">HISTORY</A>
+</UL>
+</BODY>
+</HTML>
diff --git a/pdbimgtopam.html b/pdbimgtopam.html
new file mode 100644
index 00000000..8c397286
--- /dev/null
+++ b/pdbimgtopam.html
@@ -0,0 +1,76 @@
+<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML><HEAD><TITLE>Pdbimgtopam User Manual</TITLE></HEAD>
+<BODY>
+<H1>pdbimgtopam</H1>
+Updated: 25 September 2010
+<BR>
+<A HREF="#index">Table Of Contents</A>
+
+<H2>NAME</H2>
+
+pdbimgtopam - convert a Palm Pilot Image Viewer PDB Image to a PAM image
+
+<H2 id="synopsis">SYNOPSIS</H2>
+
+<B>pdbimgtopam</B>
+
+[<b>-notefile=</b><i>filename</i>]
+[<b>-verbose</b>]
+
+[<I>pdbimgfile</I>]
+
+<H2 id="description">DESCRIPTION</H2>
+
+<p>This program is part of <a href="index.html">Netpbm</a>.
+
+<p><b>pdbimgtopam</b> reads a Palm Pilot Image Viewer image (and Image
+record in a PDB file) as input, from Standard Input or
+<I>palmfile</I>, and produces a PAM image as output.
+
+<p>If the Pilot image is monochrome, the PAM output has maxval 1.
+Otherwise, it has maxval 255.  Note that Pilot images are always
+monochrome.  The PAM image has tuple type GRAYSCALE.
+
+
+<H2 id="options">OPTIONS</H2>
+
+<DL COMPACT>
+<DT><B>-verbose</B>
+
+<DD>
+Display various interesting information about the input file and process.
+
+<DT><B>-notefile=</B><i>filename</i>
+
+<DD>
+Write the image note (if any) to the specified file.
+<p>
+If you don't specify this, <b>pdbimgtopam</b> ignores any image note.
+
+</DL>
+
+<H2 id="seealso">SEE ALSO</H2>
+
+<B><A HREF="pamtopdbimg.html">pamtopdbimg</A></B>,
+<B><A HREF="pnmtopalm.html">pnmtopalm</A></B>,
+
+<A HREF="pam.html">pam</A>,
+
+<h2 id="history">HISTORY</h2>
+
+<p><b>pdbimgtopam</b> was new in Netpbm 10.52 (September 2010).
+It was modelled after Eric A. Howe's <b>imgvtopbm</b> package, which
+dates back to September 1997.
+
+
+<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="#seealso">SEE ALSO</A>
+<LI><A HREF="#history">HISTORY</A>
+</UL>
+</BODY>
+</HTML>
diff --git a/pnmconvol.html b/pnmconvol.html
index 7c1db952..ad0e56f6 100644
--- a/pnmconvol.html
+++ b/pnmconvol.html
@@ -24,7 +24,7 @@ pnmconvol - general MxN convolution on a Netpbm image
 
 <B>pnmconvol</B>
 <I>convolution_matrix_file</I>
-[<b>-normalize</b>
+[<b>-normalize</b>]
 [<b>-nooffset</b>]
 [<I>netpbmfile</I>]
 
diff --git a/pnmtopalm.html b/pnmtopalm.html
index 2feeb902..45fdd355 100644
--- a/pnmtopalm.html
+++ b/pnmtopalm.html
@@ -244,6 +244,7 @@ as density.
 <H2 id="seealso">SEE ALSO</H2>
 
 <B><A HREF="palmtopnm.html">palmtopnm</A></B>,
+<B><A HREF="pdbimgtopam.html">pdbimgtopam</A></B>,
 <B><A HREF="pnmquant.html">pnmquant</A></B>,
 <B><A HREF="pnmremap.html">pnmremap</A></B>,
 <A HREF="pnm.html">pnm</A>
diff --git a/pnmtotiff.html b/pnmtotiff.html
index c0a65b17..8e51a997 100644
--- a/pnmtotiff.html
+++ b/pnmtotiff.html
@@ -1,4 +1,5 @@
 <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<!>
 <html><head>
 <title>pnmtotiff</title>
 </head><body>