about summary refs log tree commit diff
diff options
context:
space:
mode:
authorgiraffedata <giraffedata@9d0c8265-081b-0410-96cb-a4ca84ce46f8>2015-01-02 17:37:25 +0000
committergiraffedata <giraffedata@9d0c8265-081b-0410-96cb-a4ca84ce46f8>2015-01-02 17:37:25 +0000
commit3a9f97f79645ddb179fbcb10de74cc1a931c428e (patch)
tree9fd1fa47f8d06ef8d29a7a19af26c5f801ac1ebf
parent86b70a3992052081a89b8e7da001f3097ef434a8 (diff)
downloadnetpbm-mirror-3a9f97f79645ddb179fbcb10de74cc1a931c428e.tar.gz
netpbm-mirror-3a9f97f79645ddb179fbcb10de74cc1a931c428e.tar.xz
netpbm-mirror-3a9f97f79645ddb179fbcb10de74cc1a931c428e.zip
miscellaneous update
git-svn-id: http://svn.code.sf.net/p/netpbm/code/userguide@2369 9d0c8265-081b-0410-96cb-a4ca84ce46f8
-rw-r--r--directory.html3
-rw-r--r--tifftopnm.html17
-rw-r--r--yuy2topam.html49
3 files changed, 63 insertions, 6 deletions
diff --git a/directory.html b/directory.html
index 51984f34..87b38e8a 100644
--- a/directory.html
+++ b/directory.html
@@ -590,6 +590,9 @@ convert Windows icon file to PPM (obsoleted by <b>winicontoapm</b>).
 <DT><B><a href=yuvsplittoppm.html>yuvsplittoppm</a> </B>
 <DD>merge 3 subsampled raw YUV files to one PPM
 
+<DT><B><a href=yuv2topam.html>yuy2topam</a>     </B>
+<DD>convert YUY2 format to PAM
+
 <DT><B><a href=zeisstopnm.html>zeisstopnm</a></B>
 <DD>convert a Zeiss confocal file to Netpbm format
 
diff --git a/tifftopnm.html b/tifftopnm.html
index 7d4b2ddb..b4f2670f 100644
--- a/tifftopnm.html
+++ b/tifftopnm.html
@@ -2,7 +2,7 @@
 <HTML><HEAD><TITLE>Tifftopnm User Manual</TITLE></HEAD>
 <BODY>
 <H1>tifftopnm</H1>
-Updated: 12 July 2009
+Updated: 02 January 2015
 <BR>
 <A HREF="#index">Table Of Contents</A>
 
@@ -39,11 +39,16 @@ which type it is writing.
 output stream.  Before Netpbm 10.27 (March 2005), however, it would
 just ignore all but the first input image.
 
-<P>The <I>tiff-filename</I> argument names the regular file that
-contains the Tiff image.  If you specify &quot;-&quot; or don't
-specify this argument, <B>tfftopnm</B> uses Standard Input. In either
-case, the file must be seekable.  That means no pipe, but any regular
-file is fine.
+<P>The <I>tiff-filename</I> argument names the file that contains the Tiff
+image.  If you specify &quot;-&quot; or don't specify this
+argument, <B>tifftopnm</B> uses Standard Input.
+
+<p>In either case, before Netpbm 10.70 (March 2015), the file must be
+seekable.  That means no pipe, but any regular file is fine.  In current
+Netpbm, the file need not be seekable, but if it isn't, <b>tifftopnm</b>
+creates a temporary regular file containing the entire image, so you must have
+resources for that (and it may defeat your reason for using a pipe).
+
 
 <h3 id="library">TIFF Capability</h3>
 
diff --git a/yuy2topam.html b/yuy2topam.html
new file mode 100644
index 00000000..ed8cc36e
--- /dev/null
+++ b/yuy2topam.html
@@ -0,0 +1,49 @@
+<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML><HEAD><TITLE>Yuv2topam User Manual</TITLE></HEAD>
+<BODY>
+<H1>yuy2topam</H1>
+Updated: 23 December 2014
+<BR>
+<A HREF="#index">Table Of Contents</A>
+<H2>NAME</H2>
+
+yuy2topam - convert YUY2 bytes to PAM
+
+<H2 id="synopsis">SYNOPSIS</H2>
+
+<B>yuy2topam</B>
+
+<b>-width=</b><I>pixels</i> 
+<b>-height=</b><i>pixels</i>
+[<I>filename</I>]
+
+<H2 id="description">DESCRIPTION</H2>
+
+<p>This program is part of <a href="index.html">Netpbm</a>.
+
+<p><b>yuy2topam</b> reads raw YUY2 bytes as input and produces a
+PAM image as output.  The input file is just YUY2 bytes.  You have to
+specify the width and height on the command line, since the program
+obviously can't get them from the file.
+
+The output image has maxval 255.
+
+<H2 id="seealso">SEE ALSO</H2>
+
+<A HREF="pam.html">pam</A>
+
+<H2 id="author">AUTHOR</H2>
+
+Michael Haardt &lt;<A
+HREF="mailto:michael@moria.de">michael@moria.de</A>&gt;.
+
+<HR>
+<H2 id="index">Table Of Contents</H2>
+<UL>
+<LI><A HREF="#synopsis">SYNOPSIS</A>
+<LI><A HREF="#description">DESCRIPTION</A>
+<LI><A HREF="#seealso">SEE ALSO</A>
+<LI><A HREF="#author">AUTHOR</A>
+</UL>
+</BODY>
+</HTML>