home *** CD-ROM | disk | FTP | other *** search
/ Planet Source Code Jumbo …e CD Visual Basic 1 to 7 / 1_2002.ISO / Data / Zips / CODE_UPLOAD99999192000.psc / basTIFFStuff.bas next >
Encoding:
BASIC Source File  |  2000-07-05  |  1.2 KB  |  18 lines

  1. Attribute VB_Name = "basTIFFStuff"
  2. Option Explicit
  3.  
  4. Public Const TIFFbyte = 1                 ' 8-bit unsigned integer
  5. Public Const TIFFascii = 2                ' 8-bit byte that contains a 7-bit ASCII code; last byte MUST be NUL (binary 0)
  6. Public Const TIFFshort = 3                ' 16-bit (2-byte) unsigned integer
  7. Public Const TIFFlong = 4                 ' 32-bit (4-byte) unsigned integer
  8. Public Const TIFFrational = 5             ' Two LONGs:  the first represents the numerator of a fraction; the second the denominator
  9. Public Const TIFFsbyte = 6                ' 8-bit signed (twos-complement) integer
  10. Public Const TIFFundefined = 7            ' 8-bit byte that may contain anything, depending on the definition of the field
  11. Public Const TIFFsshort = 8               ' 16-bit (2-byte) signed (twos-complement) integer
  12. Public Const TIFFslong = 9                ' 32-bit (4-byte) signed (twos-complement) integer
  13. Public Const TIFFsrational = 10           ' Two SLONGs:  the first represents the numerator of a fraction; the second the denominator
  14. Public Const TIFFfloat = 11               ' Single precision (4-byte) IEEE format
  15. Public Const TIFFdouble = 12              ' Double precision (8-byte) IEEE format
  16.  
  17.  
  18.