2
0

intro.html 2.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768
  1. <HTML>
  2. <HEAD>
  3. <TITLE>
  4. Introduction to the TIFF Documentation
  5. </TITLE>
  6. </HEAD>
  7. <BODY BGCOLOR=white>
  8. <FONT FACE="Arial, Helvetica, Sans">
  9. <H1>
  10. <IMG SRC=images/strike.gif WIDTH=128 HEIGHT=100 ALIGN=left HSPACE=6>
  11. Introduction to the TIFF Documentation
  12. </H1>
  13. <P>
  14. The following definitions are used throughout this documentation.
  15. They are consistent with the terminology used in the TIFF 6.0 specification.
  16. <DL>
  17. <DT><I>Sample</I>
  18. <DD>The unit of information stored in an image; often called a
  19. channel elsewhere. Sample values are numbers, usually unsigned
  20. integers, but possibly in some other format if the SampleFormat
  21. tag is specified in a TIFF
  22. <DT><I>Pixel</I>
  23. <DD>A collection of one or more samples that go together.
  24. <DT><I>Row</I>
  25. <DD>An Nx1 rectangular collection of pixels.
  26. <DT><I>Tile</I>
  27. <DD>An NxM rectangular organization of data (or pixels).
  28. <DT><I>Strip</I>
  29. <DD>A tile whose width is the full image width.
  30. <DT><I>Compression</I>
  31. <DD>A scheme by which pixel or sample data are stored in
  32. an encoded form, specifically with the intent of reducing the
  33. storage cost.
  34. <DT><I>Codec</I>
  35. <DD>Software that implements the decoding and encoding algorithms
  36. of a compression scheme.
  37. </UL>
  38. <P>
  39. In order to better understand how TIFF works (and consequently this
  40. software) it is important to recognize the distinction between the
  41. physical organization of image data as it is stored in a TIFF and how
  42. the data is interpreted and manipulated as pixels in an image. TIFF
  43. supports a wide variety of storage and data compression schemes that
  44. can be used to optimize retrieval time and/or minimize storage space.
  45. These on-disk formats are independent of the image characteristics; it
  46. is the responsibility of the TIFF reader to process the on-disk storage
  47. into an in-memory format suitable for an application. Furthermore, it
  48. is the responsibility of the application to properly interpret the
  49. visual characteristics of the image data. TIFF defines a framework for
  50. specifying the on-disk storage format and image characteristics with
  51. few restrictions. This permits significant complexity that can be
  52. daunting. Good applications that handle TIFF work by handling as wide
  53. a range of storage formats as possible, while constraining the
  54. acceptable image characteristics to those that make sense for the
  55. application.
  56. <P>
  57. <HR>
  58. Last updated: $Date: 1999-08-09 20:21:21 $
  59. </BODY>
  60. </HTML>