fix HTML files so they are valid according to https://validator.w3.org

This commit is contained in:
Thomas Bernard 2020-03-05 11:38:31 +01:00
parent 535830c277
commit 690cc7a701
11 changed files with 129 additions and 80 deletions

View File

@ -1,11 +1,16 @@
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<HTML> <HTML>
<HEAD> <HEAD>
<TITLE> <TITLE>
Modifying The TIFF Library Modifying The TIFF Library
</TITLE> </TITLE>
<style type="text/css">
body {
font-family: Arial, Helvetica, Sans;
}
</style>
</HEAD> </HEAD>
<BODY BGCOLOR=white> <BODY>
<FONT FACE="Arial, Helvetica, Sans">
<H1> <H1>
Defining New TIFF Tags Defining New TIFF Tags
@ -198,8 +203,8 @@ If tag definitions are only required for writing custom tags, you can just
call TIFFMergeFieldInfo() before setting new tags. The whole extender call TIFFMergeFieldInfo() before setting new tags. The whole extender
architecture can then be avoided.<p> architecture can then be avoided.<p>
<A NAME=AddingTags><P><H2>Adding New Builtin Tags</H2></A> <H2 id="AddingTags">Adding New Builtin Tags</H2>
<P>
A similar approach is taken to the above. However, the TIFFFieldInfo A similar approach is taken to the above. However, the TIFFFieldInfo
should be added to the tiffFieldInfo[] list in tif_dirinfo.c. Ensure that should be added to the tiffFieldInfo[] list in tif_dirinfo.c. Ensure that
new tags are added in sorted order by the tag number.<p> new tags are added in sorted order by the tag number.<p>
@ -238,8 +243,8 @@ about data types. Use the typedefs (<TT>uint16</TT>, etc. when dealing with
data on disk and <TT>t*_t</TT> when stuff is in memory) and be careful about data on disk and <TT>t*_t</TT> when stuff is in memory) and be careful about
passing items through printf or similar vararg interfaces. passing items through printf or similar vararg interfaces.
<A NAME=AddingCODECTags><P><H2>Adding New Codec-private Tags</H2></A> <H2 id="AddingCODECTags">Adding New Codec-private Tags</H2>
<P>
To add tags that are meaningful <EM>only when a particular compression To add tags that are meaningful <EM>only when a particular compression
algorithm is used</EM> follow these steps: algorithm is used</EM> follow these steps:

View File

@ -1,4 +1,5 @@
<html> <!DOCTYPE html>
<html lang="en">
<head> <head>
<title>BigTIFF Design</title> <title>BigTIFF Design</title>
</head> </head>
@ -33,7 +34,7 @@ other parties.</p>
<li>Header bytes 8-15 contain the 8-byte offset to the first IFD.</li> <li>Header bytes 8-15 contain the 8-byte offset to the first IFD.</li>
<li>Value/Offset fields are 8 bytes long, and take up bytes 8-15 in an IFD entry.<ul> <li>Value/Offset fields are 8 bytes long, and take up bytes 8-15 in an IFD entry.<ul>
<li>If the value is <= 8 bytes, it must be stored in the field.</li> <li>If the value is &lt;= 8 bytes, it must be stored in the field.</li>
<li>All values must begin at an 8-byte-aligned address.</li></ul></li> <li>All values must begin at an 8-byte-aligned address.</li></ul></li>
<li>8-byte offset to the Next_IFD, at the end of an IFD.</li> <li>8-byte offset to the Next_IFD, at the end of an IFD.</li>
<li>To keep IFD entries 8-byte-aligned, we begin with an 8-byte (instead of 2-byte) count of the number of directory entries.</li> <li>To keep IFD entries 8-byte-aligned, we begin with an 8-byte (instead of 2-byte) count of the number of directory entries.</li>

View File

@ -1,11 +1,16 @@
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<HTML> <HTML>
<HEAD> <HEAD>
<TITLE>Bugs and the TIFF Mailing List</TITLE> <TITLE>Bugs and the TIFF Mailing List</TITLE>
<style type="text/css">
body {
font-family: Arial, Helvetica, Sans;
}
</style>
</HEAD> </HEAD>
<BODY BGCOLOR=white> <BODY>
<FONT FACE="Arial, Helvetica, Sans">
<H1> <H1>
<IMG SRC=images/cover.jpg WIDTH=110 HEIGHT=110 ALIGN=left BORDER=1 HSPACE=6> <IMG SRC="images/cover.jpg" WIDTH=110 HEIGHT=110 ALIGN=left BORDER=1 HSPACE=6 ALT="cover">
Bugs, Bugzilla, and the TIFF Mailing List Bugs, Bugzilla, and the TIFF Mailing List
</H1> </H1>
@ -27,7 +32,7 @@ the problem is still reproducible with the current development software
from CVS. from CVS.
<P> <P>
If you'd like to enter a new bug, you can do so at If you'd like to enter a new bug, you can do so at
<A HREF=https://gitlab.com/libtiff/libtiff/issues/new>https://gitlab.com/libtiff/libtiff/issues/new</A>. <A HREF="https://gitlab.com/libtiff/libtiff/issues/new">https://gitlab.com/libtiff/libtiff/issues/new</A>.
<P> <P>
If you'd like to inform us about some kind of security issue that should not If you'd like to inform us about some kind of security issue that should not
be disclosed for a period of time, then you can contact maintainers directly. be disclosed for a period of time, then you can contact maintainers directly.

View File

@ -1,14 +1,16 @@
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html> <html>
<head> <head>
<meta name="generator" content=
"HTML Tidy for Linux (vers 25 March 2009), see www.w3.org">
<title>Building the TIFF Software Distribution</title> <title>Building the TIFF Software Distribution</title>
<style type="text/css">
body {
font-family: Arial, Helvetica, Sans;
}
</style>
</head> </head>
<body> <body>
<h1><font face="Arial, Helvetica, Sans"><img src= <h1><img src="images/cramps.gif" width="159" height="203" align="left" border="1" hspace="6" alt="cramps">
"images/cramps.gif" width="159" height="203" align="left" border= Building the Software Distribution</h1>
"1" hspace="6"> Building the Software Distribution</font></h1>
<ul> <ul>
<li><a href="#CMAKE">Building on all systems with CMake</a>.</li> <li><a href="#CMAKE">Building on all systems with CMake</a>.</li>
<li><a href="#UNIX">Building on a UNIX system with Autoconf</a>.</li> <li><a href="#UNIX">Building on a UNIX system with Autoconf</a>.</li>
@ -229,7 +231,6 @@ available <tt>zlib</tt> distribution written by Jean-loup Gailly and
Mark Adler; this software is available at <a href= Mark Adler; this software is available at <a href=
"http://www.zlib.org/">http://www.zlib.org/</a>.</dd> "http://www.zlib.org/">http://www.zlib.org/</a>.</dd>
</dl> </dl>
<a name="Sample" id="Sample"></a>
<hr width="65%" align="right"> <hr width="65%" align="right">
<a name="UNIX" id="UNIX"></a> <a name="UNIX" id="UNIX"></a>
<h2>Building on a UNIX System with Autoconf</h2> <h2>Building on a UNIX System with Autoconf</h2>
@ -421,7 +422,6 @@ enabled the <tt>DIRS_LIBINC</tt> and <tt>DIR_GZLIB</tt> parameters
should also be set (see below). By default this package is not should also be set (see below). By default this package is not
configured.</dd> configured.</dd>
</dl> </dl>
<a name="Sample" id="Sample"></a>
<hr width="65%" align="right"> <hr width="65%" align="right">
<a name="PC" id="PC"></a> <a name="PC" id="PC"></a>
<h2>Building the Software under Windows 2000/XP/7/8/10 with nmake</h2> <h2>Building the Software under Windows 2000/XP/7/8/10 with nmake</h2>

View File

@ -1,14 +1,18 @@
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<HTML> <HTML>
<HEAD> <HEAD>
<TITLE> <TITLE>
Contributed TIFF Software Contributed TIFF Software
</TITLE> </TITLE>
<style type="text/css">
body {
font-family: Arial, Helvetica, Sans;
}
</style>
</HEAD> </HEAD>
<BODY>
<BODY BGCOLOR=white>
<FONT FACE="Arial, Helvetica, Sans">
<H1> <H1>
<IMG SRC=images/smallliz.jpg WIDTH=144 HEIGHT=108 ALIGN=left BORDER=1 HSPACE=6> <IMG SRC="images/smallliz.jpg" WIDTH=144 HEIGHT=108 ALIGN=left BORDER=1 HSPACE=6 ALT="smallliz">
Contributed TIFF Software Contributed TIFF Software
</H1> </H1>
@ -155,11 +159,10 @@ various routines from Conrad Poelman; a TIFF image iterator and
<TD> <TD>
A utility by <A HREF=mailto:billr@corbis.com>Bill Radcliffe</a> to A utility by <A HREF="mailto:billr@corbis.com">Bill Radcliffe</a> to
convert an extracted IPTC Newsphoto caption from a binary blob to convert an extracted IPTC Newsphoto caption from a binary blob to
ASCII text, and vice versa. IPTC binary blobs can be extracted from ASCII text, and vice versa. IPTC binary blobs can be extracted from
images via the <A images via the <A HREF="http://www.ImageMagick.org/">ImageMagick</a> convert(1)
HREF=http://www.ImageMagick.org/>ImageMagick</a> convert(1)
utility. utility.

View File

@ -1,13 +1,18 @@
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<HTML> <HTML>
<HEAD> <HEAD>
<TITLE> <TITLE>
TIFF Documentation TIFF Documentation
</TITLE> </TITLE>
<style type="text/css">
body {
font-family: Arial, Helvetica, Sans;
}
</style>
</HEAD> </HEAD>
<BODY BGCOLOR=white> <BODY>
<FONT FACE="Arial, Helvetica, Sans">
<H1> <H1>
<IMG SRC=images/jim.gif WIDTH=139 HEIGHT=170 ALIGN=left BORDER=1 HSPACE=6> <IMG SRC="images/jim.gif" WIDTH=139 HEIGHT=170 ALIGN=left BORDER=1 HSPACE=6 ALT="jim">
TIFF Documentation TIFF Documentation
</H1> </H1>

View File

@ -1,13 +1,18 @@
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<HTML> <HTML>
<HEAD> <HEAD>
<TITLE> <TITLE>
TIFF Test Images TIFF Test Images
</TITLE> </TITLE>
<style type="text/css">
body {
font-family: Arial, Helvetica, Sans;
}
</style>
</HEAD> </HEAD>
<BODY BGCOLOR=white> <BODY>
<FONT FACE="Arial, Helvetica, Sans">
<H1> <H1>
<IMG SRC=images/bali.jpg WIDTH=158 HEIGHT=107 ALIGN=left BORDER=1 HSPACE=6> <IMG SRC="images/bali.jpg" WIDTH=158 HEIGHT=107 ALIGN=left BORDER=1 HSPACE=6 ALT="bali">
TIFF Test Images TIFF Test Images
</H1> </H1>

View File

@ -1,13 +1,18 @@
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<HTML> <HTML>
<HEAD> <HEAD>
<TITLE> <TITLE>
Modifying The TIFF Library Modifying The TIFF Library
</TITLE> </TITLE>
<style type="text/css">
body {
font-family: Arial, Helvetica, Sans;
}
</style>
</HEAD> </HEAD>
<BODY BGCOLOR=white> <BODY>
<FONT FACE="Arial, Helvetica, Sans">
<H1> <H1>
<IMG SRC=images/dave.gif WIDTH=107 HEIGHT=148 BORDER=2 ALIGN=left HSPACE=6> <IMG SRC="images/dave.gif" WIDTH=107 HEIGHT=148 BORDER=2 ALIGN=left HSPACE=6 ALT="dave">
Modifying The TIFF Library Modifying The TIFF Library
</H1> </H1>
@ -19,18 +24,19 @@ how to add new support to the library.
The following sections are found in this chapter: The following sections are found in this chapter:
<UL> <UL>
<LI><A HREF=#Config>Library Configuration</A> <LI><A HREF="#Config">Library Configuration</A>
<LI><A HREF=#Portability>General Portability Comments</A> <LI><A HREF="#Portability">General Portability Comments</A>
<LI><A HREF="#Types">Types and Portability</A> <LI><A HREF="#Types">Types and Portability</A>
<LI><A HREF="addingtags.html">Adding New Tags</A> <LI><A HREF="addingtags.html">Adding New Tags</A>
<LI><A HREF=#AddingCODECS>Adding New Builtin Codecs</A> <LI><A HREF="#AddingCODECS">Adding New Builtin Codecs</A>
<LI><A HREF="addingtags.html#AddingCODECTags">Adding New Codec-private Tags</A> <LI><A HREF="addingtags.html#AddingCODECTags">Adding New Codec-private Tags</A>
<LI><A HREF=#Other>Other Comments</A> <LI><A HREF="#Other">Other Comments</A>
</UL> </UL>
<A NAME="Config"><P><HR WIDTH=65% ALIGN=right><H3>Library Configuration</H3></A> <HR WIDTH="65%" ALIGN=right>
<H3 id="Config">Library Configuration</H3>
<P>
Information on compiling the library is given Information on compiling the library is given
<A HREF=build.html>elsewhere in this documentation</A>. <A HREF=build.html>elsewhere in this documentation</A>.
This section describes the low-level mechanisms used to control This section describes the low-level mechanisms used to control
@ -71,11 +77,11 @@ To override the default compression behaviour define
to enable configuration of the appropriate codecs (see the table to enable configuration of the appropriate codecs (see the table
below); e.g. below); e.g.
<UL><PRE> <PRE style="margin-left: 3em;">
#define COMPRESSION_SUPPORT #define COMPRESSION_SUPPORT
#define CCITT_SUPPORT #define CCITT_SUPPORT
#define PACKBITS_SUPPORT #define PACKBITS_SUPPORT
</PRE></UL> </PRE>
Several other compression schemes are configured separately from Several other compression schemes are configured separately from
the default set because they depend on ancillary software the default set because they depend on ancillary software
@ -87,7 +93,7 @@ The JPEG codec that comes with <TT>libtiff</TT> is designed for
use with release 5 or later of the Independent JPEG Group's freely use with release 5 or later of the Independent JPEG Group's freely
available software distribution. available software distribution.
This software can be retrieved from the directory This software can be retrieved from the directory
<A HREF=ftp://ftp.uu.net/graphics/jpeg>ftp.uu.net:/graphics/jpeg/</A>. <A HREF="ftp://ftp.uu.net/graphics/jpeg">ftp.uu.net:/graphics/jpeg/</A>.
<P> <P>
@ -103,14 +109,14 @@ for use with version 0.99 or later of the freely available
<TT>libz</TT> library written by Jean-loup Gailly and Mark Adler. <TT>libz</TT> library written by Jean-loup Gailly and Mark Adler.
The data format used by this library is described The data format used by this library is described
in the files in the files
<A HREF=ftp://ftp.uu.net/pub/archiving/zip/doc/zlib-3.1.doc>zlib-3.1.doc</A>, <A HREF="ftp://ftp.uu.net/pub/archiving/zip/doc/zlib-3.1.doc">zlib-3.1.doc</A>,
and and
<A HREF=ftp://ftp.uu.net/pub/archiving/zip/doc/deflate-1.1.doc>deflate-1.1.doc</A>, <A HREF="ftp://ftp.uu.net/pub/archiving/zip/doc/deflate-1.1.doc">deflate-1.1.doc</A>,
available in the directory available in the directory
<A HREF=ftp://ftp.uu.net/pub/archiving/zip/doc>ftp.uu.net:/pub/archiving/zip/doc</A>.</EM> <A HREF="ftp://ftp.uu.net/pub/archiving/zip/doc">ftp.uu.net:/pub/archiving/zip/doc</A>.
The library can be retried from the directory The library can be retried from the directory
<A HREF=ftp://ftp.uu.net/pub/archiving/zip/zlib/>ftp.uu.net:/pub/archiving/zip/zlib/</A> <A HREF="ftp://ftp.uu.net/pub/archiving/zip/zlib/">ftp.uu.net:/pub/archiving/zip/zlib/</A>
(or try <A HREF=ftp://quest.jpl.nasa.gov/beta/zlib/>quest.jpl.nasa.gov:/beta/zlib/</A>). (or try <A HREF="ftp://quest.jpl.nasa.gov/beta/zlib/">quest.jpl.nasa.gov:/beta/zlib/</A>).
<P> <P>
<IMG SRC="images/warning.gif" ALT="NOTE: " ALIGN=left HSPACE=8 VSPACE=6> <IMG SRC="images/warning.gif" ALT="NOTE: " ALIGN=left HSPACE=8 VSPACE=6>
@ -205,15 +211,15 @@ run-length encoding scheme from ThunderScan (compression 32809)</TD>
<I>The ICC Profile Format Specification</I>, <I>The ICC Profile Format Specification</I>,
Annex B.3 "Embedding ICC Profiles in TIFF Files"; Annex B.3 "Embedding ICC Profiles in TIFF Files";
available at available at
<A HREF=http://www.color.org>http://www.color.org</A> <A HREF="http://www.color.org">http://www.color.org</A>
</TD> </TD>
</TR> </TR>
</TABLE> </TABLE>
<HR WIDTH="65%" ALIGN=right>
<A NAME="Portability"><P><HR WIDTH=65% ALIGN=right><H3>General Portability Comments</H3></A> <H3 id="Portability">General Portability Comments</H3>
<P>
This software is developed on Silicon Graphics UNIX This software is developed on Silicon Graphics UNIX
systems (big-endian, MIPS CPU, 32-bit ints, systems (big-endian, MIPS CPU, 32-bit ints,
IEEE floating point). IEEE floating point).
@ -271,7 +277,7 @@ codecs for optimization purposes.
The following defines control general portability: The following defines control general portability:
<P> <P>
<TABLE BORDER CELLPADDING=3 WIDTH=100%> <TABLE BORDER CELLPADDING=3 WIDTH="100%">
<TR> <TR>
<TD VALIGN=top><TT>BSDTYPES</TT></TD> <TD VALIGN=top><TT>BSDTYPES</TT></TD>
@ -317,8 +323,9 @@ Note that <B>tiffcomp.h</B> defines <TT>HAVE_IEEEFP</TT> to be
1 (<TT>BSDTYPES</TT> is not defined). 1 (<TT>BSDTYPES</TT> is not defined).
<A NAME="Types"><P><HR WIDTH=65% ALIGN=right><H3>Types and Portability</H3></A> <HR WIDTH="65%" ALIGN=right>
<H3 id="Types">Types and Portability</H3>
<P>
The software makes extensive use of C typedefs to promote portability. The software makes extensive use of C typedefs to promote portability.
Two sets of typedefs are used, one for communication with clients Two sets of typedefs are used, one for communication with clients
of the library and one for internal data structures and parsing of the of the library and one for internal data structures and parsing of the
@ -328,7 +335,7 @@ purely by fiddling with the following machine-dependent typedefs:
<P> <P>
<TABLE BORDER CELLPADDING=3 WIDTH=100%> <TABLE BORDER CELLPADDING=3 WIDTH="100%">
<TR> <TR>
<TD>uint8</TD> <TD>uint8</TD>
@ -385,10 +392,10 @@ structure:
<P> <P>
<TABLE BORDER CELLPADDING=3 WIDTH=100%> <TABLE BORDER CELLPADDING=3 WIDTH="100%">
<TR> <TR>
<TD WIDTH=25%>typedef unsigned int ttag_t;</TD> <TD>directory tag</TD> <TD WIDTH="25%">typedef unsigned int ttag_t;</TD> <TD>directory tag</TD>
</TR> </TR>
<TR> <TR>
@ -451,8 +458,9 @@ passed as opaque handles and only cast at the lowest layers where
their type is presumed. their type is presumed.
<P><HR WIDTH=65% ALIGN=right><H3>General Comments</H3></A> <HR WIDTH="65%" ALIGN=right>
<H3>General Comments</H3>
<P>
The library is designed to hide as much of the details of TIFF from The library is designed to hide as much of the details of TIFF from
applications as applications as
possible. In particular, TIFF directories are read in their entirety possible. In particular, TIFF directories are read in their entirety
@ -460,7 +468,9 @@ into an internal format. Only the tags known by the library are
available to a user and certain tag data may be maintained that a user available to a user and certain tag data may be maintained that a user
does not care about (e.g. transfer function tables). does not care about (e.g. transfer function tables).
<A NAME=AddingCODECS><P><HR WIDTH=65% ALIGN=right><H3>Adding New Builtin Codecs</H3></A> <HR WIDTH="65%" ALIGN=right>
<H3 id="AddingCODECS">Adding New Builtin Codecs</H3>
<P>
To add builtin support for a new compression algorithm, you can either To add builtin support for a new compression algorithm, you can either
use the "tag-extension" trick to override the handling of the use the "tag-extension" trick to override the handling of the
@ -514,8 +524,9 @@ encoded or decoded if the image is organized with <TT>PlanarConfig</TT>=2
(separate planes). This is important for algorithms such as JPEG. (separate planes). This is important for algorithms such as JPEG.
If <TT>PlanarConfig</TT>=1 (interleaved), then sample will always be 0. If <TT>PlanarConfig</TT>=1 (interleaved), then sample will always be 0.
<A NAME=Other><P><HR WIDTH=65% ALIGN=right><H3>Other Comments</H3></A> <HR WIDTH="65%" ALIGN=right>
<H3 id="Other">Other Comments</H3>
<P>
The library handles most I/O buffering. There are two data buffers The library handles most I/O buffering. There are two data buffers
when decoding data: a raw data buffer that holds all the data in a when decoding data: a raw data buffer that holds all the data in a
strip, and a user-supplied scanline buffer that compression schemes strip, and a user-supplied scanline buffer that compression schemes

View File

@ -1,13 +1,18 @@
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<HTML> <HTML>
<HEAD> <HEAD>
<TITLE> <TITLE>
Introduction to the TIFF Documentation Introduction to the TIFF Documentation
</TITLE> </TITLE>
<style type="text/css">
body {
font-family: Arial, Helvetica, Sans;
}
</style>
</HEAD> </HEAD>
<BODY BGCOLOR=white> <BODY>
<FONT FACE="Arial, Helvetica, Sans">
<H1> <H1>
<IMG SRC=images/strike.gif WIDTH=128 HEIGHT=100 ALIGN=left HSPACE=6> <IMG SRC="images/strike.gif" WIDTH=128 HEIGHT=100 ALIGN=left HSPACE=6 ALT="strike">
Introduction to the TIFF Documentation Introduction to the TIFF Documentation
</H1> </H1>
@ -37,7 +42,7 @@ They are consistent with the terminology used in the TIFF 6.0 specification.
<DT><I>Codec</I> <DT><I>Codec</I>
<DD>Software that implements the decoding and encoding algorithms <DD>Software that implements the decoding and encoding algorithms
of a compression scheme. of a compression scheme.
</UL> </DL>
<P> <P>
In order to better understand how TIFF works (and consequently this In order to better understand how TIFF works (and consequently this

View File

@ -1,13 +1,18 @@
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<HTML> <HTML>
<HEAD> <HEAD>
<TITLE> <TITLE>
Acknowledgments and Other Issues Acknowledgments and Other Issues
</TITLE> </TITLE>
<style type="text/css">
body {
font-family: Arial, Helvetica, Sans;
}
</style>
</HEAD> </HEAD>
<BODY BGCOLOR=white> <BODY>
<FONT FACE="Arial, Helvetica, Sans">
<H1> <H1>
<IMG SRC=images/ring.gif WIDTH=124 HEIGHT=124 ALIGN=left BORDER=1 HSPACE=6> <IMG SRC="images/ring.gif" WIDTH=124 HEIGHT=124 ALIGN=left BORDER=1 HSPACE=6 ALT="ring">
Acknowledgments and Other Issues Acknowledgments and Other Issues
</H1> </H1>
@ -84,7 +89,7 @@ the more persistent contributors have been:
<H2>Use and Copyright</H2> <H2>Use and Copyright</H2>
<P><H5><PRE> <PRE><B>
Copyright (c) 1988-1997 Sam Leffler Copyright (c) 1988-1997 Sam Leffler
Copyright (c) 1991-1997 Silicon Graphics, Inc. Copyright (c) 1991-1997 Silicon Graphics, Inc.
@ -106,9 +111,8 @@ OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS,
WHETHER OR NOT ADVISED OF THE POSSIBILITY OF DAMAGE, AND ON ANY THEORY OF WHETHER OR NOT ADVISED OF THE POSSIBILITY OF DAMAGE, AND ON ANY THEORY OF
LIABILITY, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE LIABILITY, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE
OF THIS SOFTWARE. OF THIS SOFTWARE.
</PRE></H5> </B></PRE>
<P>
<HR> <HR>

View File

@ -1,14 +1,16 @@
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html> <html>
<head> <head>
<meta name="generator" content=
"HTML Tidy for Solaris (vers 12 April 2005), see www.w3.org">
<title>TIFF Tools Overview</title> <title>TIFF Tools Overview</title>
<style type="text/css">
body {
font-family: Arial, Helvetica, Sans;
}
</style>
</head> </head>
<body> <body>
<h1><font face="Arial, Helvetica, Sans"><img src="images/quad.jpg" <h1><img src="images/quad.jpg" width="144" height="108" align="left" border="1" hspace="6" alt="quad">
width="144" height="108" align="left" border="1" hspace="6"> TIFF TIFF Tools Overview</h1>
Tools Overview</font></h1>
<p>This software distribution comes with a small collection of <p>This software distribution comes with a small collection of
programs for converting non-TIFF format images to TIFF and for programs for converting non-TIFF format images to TIFF and for
manipulating and interrogating the contents of TIFF images. Several manipulating and interrogating the contents of TIFF images. Several
@ -30,6 +32,7 @@ facilities described elsewhere.</td>
<h3>Device-independent Programs</h3> <h3>Device-independent Programs</h3>
The remaining programs should be device-independent: The remaining programs should be device-independent:
<table border cellpadding="3"> <table border cellpadding="3">
<tr>
<td valign="top" width="10%"><tt><a href="man/fax2ps.1.html">fax2ps</a></tt></td> <td valign="top" width="10%"><tt><a href="man/fax2ps.1.html">fax2ps</a></tt></td>
<td>Convert a Group 3- or Group 4- compressed TIFF to PostScript <td>Convert a Group 3- or Group 4- compressed TIFF to PostScript
that is significantly more compressed than is generated by that is significantly more compressed than is generated by
@ -39,6 +42,7 @@ that is significantly more compressed than is generated by
<td valign="top" width="10%"><tt><a href="man/fax2tiff.1.html">fax2tiff</a></tt></td> <td valign="top" width="10%"><tt><a href="man/fax2tiff.1.html">fax2tiff</a></tt></td>
<td>Convert raw Group 3 or Group 4 facsimile data to TIFF</td> <td>Convert raw Group 3 or Group 4 facsimile data to TIFF</td>
</tr> </tr>
<tr>
<td valign="top" width="10%"><tt><a href="man/pal2rgb.1.html">pal2rgb</a></tt></td> <td valign="top" width="10%"><tt><a href="man/pal2rgb.1.html">pal2rgb</a></tt></td>
<td>Convert a Palette-style image to a full color RGB image by <td>Convert a Palette-style image to a full color RGB image by
applying the colormap</td> applying the colormap</td>
@ -47,6 +51,7 @@ applying the colormap</td>
<td valign="top" width="10%"><tt><a href="man/ppm2tiff.1.html">ppm2tiff</a></tt></td> <td valign="top" width="10%"><tt><a href="man/ppm2tiff.1.html">ppm2tiff</a></tt></td>
<td>A quick hack that converts 8-bit PPM format images to TIFF</td> <td>A quick hack that converts 8-bit PPM format images to TIFF</td>
</tr> </tr>
<tr>
<td valign="top" width="10%"><tt><a href="man/raw2tiff.1.html">raw2tiff</a></tt></td> <td valign="top" width="10%"><tt><a href="man/raw2tiff.1.html">raw2tiff</a></tt></td>
<td>Create a TIFF file from raw data</td> <td>Create a TIFF file from raw data</td>
</tr> </tr>
@ -56,7 +61,7 @@ applying the colormap</td>
TIFF image; it's mainly provided for testing</td> TIFF image; it's mainly provided for testing</td>
</tr> </tr>
<tr> <tr>
<td valign="top" width="10%"><tt><a href="man/thumbnail.1.html">thumbnail</a></tt></tt></td> <td valign="top" width="10%"><tt><a href="man/thumbnail.1.html">thumbnail</a></tt></td>
<td>Copy a bilevel TIFF to one that includes 8-bit greyscale <td>Copy a bilevel TIFF to one that includes 8-bit greyscale
"thumbnail images" for each page; it is provided as an example of "thumbnail images" for each page; it is provided as an example of
how one might use the <tt>SubIFD</tt> tag (and the library support how one might use the <tt>SubIFD</tt> tag (and the library support