intro.html 2.4 KB

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