Blame html/intro.html

Packit 994f1a
<HTML>
Packit 994f1a
<HEAD>
Packit 994f1a
<TITLE>
Packit 994f1a
Introduction to the TIFF Documentation
Packit 994f1a
</TITLE>
Packit 994f1a
</HEAD>
Packit 994f1a
<BODY BGCOLOR=white> 
Packit 994f1a
<FONT FACE="Arial, Helvetica, Sans">
Packit 994f1a

Packit 994f1a
Packit 994f1a
Introduction to the TIFF Documentation
Packit 994f1a
Packit 994f1a
Packit 994f1a
Packit 994f1a

Packit 994f1a
The following definitions are used throughout this documentation.
Packit 994f1a
They are consistent with the terminology used in the TIFF 6.0 specification.
Packit 994f1a
Packit 994f1a
Packit 994f1a
Sample
Packit 994f1a
The unit of information stored in an image; often called a
Packit 994f1a
  channel elsewhere.  Sample values are numbers, usually unsigned
Packit 994f1a
  integers, but possibly in some other format if the SampleFormat
Packit 994f1a
  tag is specified in a TIFF
Packit 994f1a
Pixel
Packit 994f1a
A collection of one or more samples that go together.
Packit 994f1a
Row
Packit 994f1a
An Nx1 rectangular collection of pixels.
Packit 994f1a
Tile
Packit 994f1a
An NxM rectangular organization of data (or pixels).
Packit 994f1a
Strip
Packit 994f1a
A tile whose width is the full image width.
Packit 994f1a
Compression
Packit 994f1a
A scheme by which pixel or sample data are stored in
Packit 994f1a
  an encoded form, specifically with the intent of reducing the
Packit 994f1a
  storage cost.
Packit 994f1a
Codec
Packit 994f1a
Software that implements the decoding and encoding algorithms
Packit 994f1a
  of a compression scheme.
Packit 994f1a
Packit 994f1a
Packit 994f1a

Packit 994f1a
In order to better understand how TIFF works (and consequently this
Packit 994f1a
software) it is important to recognize the distinction between the
Packit 994f1a
physical organization of image data as it is stored in a TIFF and how
Packit 994f1a
the data is interpreted and manipulated as pixels in an image.  TIFF
Packit 994f1a
supports a wide variety of storage and data compression schemes that
Packit 994f1a
can be used to optimize retrieval time and/or minimize storage space.
Packit 994f1a
These on-disk formats are independent of the image characteristics; it
Packit 994f1a
is the responsibility of the TIFF reader to process the on-disk storage
Packit 994f1a
into an in-memory format suitable for an application.  Furthermore, it
Packit 994f1a
is the responsibility of the application to properly interpret the
Packit 994f1a
visual characteristics of the image data.  TIFF defines a framework for
Packit 994f1a
specifying the on-disk storage format and image characteristics with
Packit 994f1a
few restrictions.  This permits significant complexity that can be
Packit 994f1a
daunting.  Good applications that handle TIFF work by handling as wide
Packit 994f1a
a range of storage formats as possible, while constraining the
Packit 994f1a
acceptable image characteristics to those that make sense for the
Packit 994f1a
application.
Packit 994f1a
Packit 994f1a
Packit 994f1a

Packit 994f1a

Packit 994f1a
Packit 994f1a
Last updated: $Date: 1999/08/09 20:21:21 $
Packit 994f1a
Packit 994f1a
</BODY>
Packit 994f1a
</HTML>