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