home *** CD-ROM | disk | FTP | other *** search
/ ARM Club 3 / TheARMClub_PDCD3.iso / hensa / graphics / libtiff_1 / h / tiffio < prev    next >
Text File  |  1995-10-12  |  12KB  |  299 lines

  1. /* $Header: /usr/people/sam/tiff/libtiff/RCS/tiffio.h,v 1.90 1995/06/27 00:54:10 sam Exp $ */
  2.  
  3. /*
  4.  * Copyright (c) 1988-1995 Sam Leffler
  5.  * Copyright (c) 1991-1995 Silicon Graphics, Inc.
  6.  *
  7.  * Permission to use, copy, modify, distribute, and sell this software and 
  8.  * its documentation for any purpose is hereby granted without fee, provided
  9.  * that (i) the above copyright notices and this permission notice appear in
  10.  * all copies of the software and related documentation, and (ii) the names of
  11.  * Sam Leffler and Silicon Graphics may not be used in any advertising or
  12.  * publicity relating to the software without the specific, prior written
  13.  * permission of Sam Leffler and Silicon Graphics.
  14.  * 
  15.  * THE SOFTWARE IS PROVIDED "AS-IS" AND WITHOUT WARRANTY OF ANY KIND, 
  16.  * EXPRESS, IMPLIED OR OTHERWISE, INCLUDING WITHOUT LIMITATION, ANY 
  17.  * WARRANTY OF MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE.  
  18.  * 
  19.  * IN NO EVENT SHALL SAM LEFFLER OR SILICON GRAPHICS BE LIABLE FOR
  20.  * ANY SPECIAL, INCIDENTAL, INDIRECT OR CONSEQUENTIAL DAMAGES OF ANY KIND,
  21.  * OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS,
  22.  * WHETHER OR NOT ADVISED OF THE POSSIBILITY OF DAMAGE, AND ON ANY THEORY OF 
  23.  * LIABILITY, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE 
  24.  * OF THIS SOFTWARE.
  25.  */
  26.  
  27. #ifndef _TIFFIO_
  28. #define    _TIFFIO_
  29.  
  30. /*
  31.  * TIFF I/O Library Definitions.
  32.  */
  33. #include "tiff.h"
  34.  
  35. /*
  36.  * TIFF is defined as an incomplete type to hide the
  37.  * library's internal data structures from clients.
  38.  */
  39. typedef    struct tiff TIFF;
  40.  
  41. /*
  42.  * The following typedefs define the intrinsic size of
  43.  * data types used in the *exported* interfaces.  These
  44.  * definitions depend on the proper definition of types
  45.  * in tiff.h.  Note also that the varargs interface used
  46.  * pass tag types and values uses the types defined in
  47.  * tiff.h directly.
  48.  *
  49.  * NB: ttag_t is unsigned int and not unsigned short because
  50.  *     ANSI C requires that the type before the ellipsis be a
  51.  *     promoted type (i.e. one of int, unsigned int, pointer,
  52.  *     or double) and because we defined pseudo-tags that are
  53.  *     outside the range of legal Aldus-assigned tags.
  54.  * NB: tsize_t is int32 and not uint32 because some functions
  55.  *     return -1.
  56.  * NB: toff_t is not off_t for many reasons; TIFFs max out at
  57.  *     32-bit file offsets being the most important
  58.  */
  59. typedef    unsigned int ttag_t;    /* directory tag */
  60. typedef    uint16 tdir_t;        /* directory index */
  61. typedef    uint16 tsample_t;    /* sample number */
  62. typedef    uint32 tstrip_t;    /* strip number */
  63. typedef uint32 ttile_t;        /* tile number */
  64. typedef    int32 tsize_t;        /* i/o size in bytes */
  65. #if defined(_WINDOWS) || defined(__WIN32__) || defined(_Windows)
  66. #include <windows.h>
  67. typedef    HFILE thandle_t;    /* client data handle */
  68. #else
  69. typedef    void* thandle_t;    /* client data handle */
  70. #endif
  71. typedef    void* tdata_t;        /* image data ref */
  72. typedef    int32 toff_t;        /* file offset */
  73.  
  74. #ifndef NULL
  75. #define    NULL    0
  76. #endif
  77.  
  78. /*
  79.  * Flags to pass to TIFFPrintDirectory to control
  80.  * printing of data structures that are potentially
  81.  * very large.   Bit-or these flags to enable printing
  82.  * multiple items.
  83.  */
  84. #define    TIFFPRINT_NONE        0x0        /* no extra info */
  85. #define    TIFFPRINT_STRIPS    0x1        /* strips/tiles info */
  86. #define    TIFFPRINT_CURVES    0x2        /* color/gray response curves */
  87. #define    TIFFPRINT_COLORMAP    0x4        /* colormap */
  88. #define    TIFFPRINT_JPEGQTABLES    0x100        /* JPEG Q matrices */
  89. #define    TIFFPRINT_JPEGACTABLES    0x200        /* JPEG AC tables */
  90. #define    TIFFPRINT_JPEGDCTABLES    0x200        /* JPEG DC tables */
  91.  
  92. /*
  93.  * RGBA-style image support.
  94.  */
  95. typedef    unsigned char TIFFRGBValue;        /* 8-bit samples */
  96. typedef struct _TIFFRGBAImage TIFFRGBAImage;
  97. /*
  98.  * The image reading and conversion routines invoke
  99.  * ``put routines'' to copy/image/whatever tiles of
  100.  * raw image data.  A default set of routines are 
  101.  * provided to convert/copy raw image data to 8-bit
  102.  * packed ABGR format rasters.  Applications can supply
  103.  * alternate routines that unpack the data into a
  104.  * different format or, for example, unpack the data
  105.  * and draw the unpacked raster on the display.
  106.  */
  107. typedef void (*tileContigRoutine)
  108.     (TIFFRGBAImage*, uint32*, uint32, uint32, uint32, uint32, int32, int32,
  109.     unsigned char*);
  110. typedef void (*tileSeparateRoutine)
  111.     (TIFFRGBAImage*, uint32*, uint32, uint32, uint32, uint32, int32, int32,
  112.     unsigned char*, unsigned char*, unsigned char*, unsigned char*);
  113. /*
  114.  * RGBA-reader state.
  115.  */
  116. typedef struct {                /* YCbCr->RGB support */
  117.     TIFFRGBValue* clamptab;            /* range clamping table */
  118.     int*    Cr_r_tab;
  119.     int*    Cb_b_tab;
  120.     int32*    Cr_g_tab;
  121.     int32*    Cb_g_tab;
  122.     float    coeffs[3];            /* cached for repeated use */
  123. } TIFFYCbCrToRGB;
  124.  
  125. struct _TIFFRGBAImage {
  126.     TIFF*    tif;                /* image handle */
  127.     int    stoponerr;            /* stop on read error */
  128.     int    isContig;            /* data is packed/separate */
  129.     int    alpha;                /* type of alpha data present */
  130.     uint32    width;                /* image width */
  131.     uint32    height;                /* image height */
  132.     uint16    bitspersample;            /* image bits/sample */
  133.     uint16    samplesperpixel;        /* image samples/pixel */
  134.     uint16    orientation;            /* image orientation */
  135.     uint16    photometric;            /* image photometric interp */
  136.     uint16*    redcmap;            /* colormap pallete */
  137.     uint16*    greencmap;
  138.     uint16*    bluecmap;
  139.                         /* get image data routine */
  140.     int    (*get)(TIFFRGBAImage*, uint32*, uint32, uint32);
  141.     union {
  142.         void (*any)(TIFFRGBAImage*);
  143.         tileContigRoutine    contig;
  144.         tileSeparateRoutine    separate;
  145.     } put;                    /* put decoded strip/tile */
  146.     TIFFRGBValue* Map;            /* sample mapping array */
  147.     uint32** BWmap;                /* black&white map */
  148.     uint32** PALmap;            /* palette image map */
  149.     TIFFYCbCrToRGB* ycbcr;            /* YCbCr conversion state */
  150. };
  151.  
  152. /*
  153.  * Macros for extracting components from the
  154.  * packed ABGR form returned by TIFFReadRGBAImage.
  155.  */
  156. #define    TIFFGetR(abgr)    ((abgr) & 0xff)
  157. #define    TIFFGetG(abgr)    (((abgr) >> 8) & 0xff)
  158. #define    TIFFGetB(abgr)    (((abgr) >> 16) & 0xff)
  159. #define    TIFFGetA(abgr)    (((abgr) >> 24) & 0xff)
  160.  
  161. /*
  162.  * A CODEC is a software package that implements decoding,
  163.  * encoding, or decoding+encoding of a compression algorithm.
  164.  * The library provides a collection of builtin codecs.
  165.  * More codecs may be registered through calls to the library
  166.  * and/or the builtin implementations may be overridden.
  167.  */
  168. typedef    int (*TIFFInitMethod)(TIFF*, int);
  169. typedef struct {
  170.     char*        name;
  171.     uint16        scheme;
  172.     TIFFInitMethod    init;
  173. } TIFFCodec;
  174.  
  175. #include <stdio.h>
  176. #include <stdarg.h>
  177.  
  178. #if defined(__cplusplus)
  179. extern "C" {
  180. #endif
  181. typedef    void (*TIFFErrorHandler)(const char*, const char*, va_list);
  182. typedef    tsize_t (*TIFFReadWriteProc)(thandle_t, tdata_t, tsize_t);
  183. typedef    toff_t (*TIFFSeekProc)(thandle_t, toff_t, int);
  184. typedef    int (*TIFFCloseProc)(thandle_t);
  185. typedef    toff_t (*TIFFSizeProc)(thandle_t);
  186. typedef    int (*TIFFMapFileProc)(thandle_t, tdata_t*, toff_t*);
  187. typedef    void (*TIFFUnmapFileProc)(thandle_t, tdata_t, toff_t);
  188. typedef    void (*TIFFExtendProc)(TIFF*); 
  189.  
  190. extern    const char* TIFFGetVersion(void);
  191.  
  192. extern    const TIFFCodec* TIFFFindCODEC(uint16);
  193. extern    TIFFCodec* TIFFRegisterCODEC(uint16, const char*, TIFFInitMethod);
  194. extern    void TIFFUnRegisterCODEC(TIFFCodec*);
  195.  
  196. extern    tdata_t _TIFFmalloc(tsize_t);
  197. extern    tdata_t _TIFFrealloc(tdata_t, tsize_t);
  198. extern    void _TIFFmemset(tdata_t, int, tsize_t);
  199. extern    void _TIFFmemcpy(tdata_t, const tdata_t, tsize_t);
  200. extern    int _TIFFmemcmp(const tdata_t, const tdata_t, tsize_t);
  201. extern    void _TIFFfree(tdata_t);
  202.  
  203. extern    void TIFFClose(TIFF*);
  204. extern    int TIFFFlush(TIFF*);
  205. extern    int TIFFFlushData(TIFF*);
  206. extern    int TIFFGetField(TIFF*, ttag_t, ...);
  207. extern    int TIFFVGetField(TIFF*, ttag_t, va_list);
  208. extern    int TIFFGetFieldDefaulted(TIFF*, ttag_t, ...);
  209. extern    int TIFFVGetFieldDefaulted(TIFF*, ttag_t, va_list);
  210. extern    int TIFFReadDirectory(TIFF*);
  211. extern    tsize_t TIFFScanlineSize(TIFF*);
  212. extern    tsize_t TIFFRasterScanlineSize(TIFF*);
  213. extern    tsize_t TIFFStripSize(TIFF*);
  214. extern    tsize_t TIFFVStripSize(TIFF*, uint32);
  215. extern    tsize_t TIFFTileRowSize(TIFF*);
  216. extern    tsize_t TIFFTileSize(TIFF*);
  217. extern    tsize_t TIFFVTileSize(TIFF*, uint32);
  218. extern    uint32 TIFFDefaultStripSize(TIFF*, uint32);
  219. extern    void TIFFDefaultTileSize(TIFF*, uint32*, uint32*);
  220. extern    int TIFFFileno(TIFF*);
  221. extern    int TIFFGetMode(TIFF*);
  222. extern    int TIFFIsTiled(TIFF*);
  223. extern    int TIFFIsByteSwapped(TIFF*);
  224. extern    int TIFFIsUpSampled(TIFF*);
  225. extern    int TIFFIsMSB2LSB(TIFF*);
  226. extern    uint32 TIFFCurrentRow(TIFF*);
  227. extern    tdir_t TIFFCurrentDirectory(TIFF*);
  228. extern    uint32 TIFFCurrentDirOffset(TIFF*);
  229. extern    tstrip_t TIFFCurrentStrip(TIFF*);
  230. extern    ttile_t TIFFCurrentTile(TIFF*);
  231. extern    int TIFFReadBufferSetup(TIFF*, tdata_t, tsize_t);
  232. extern    int TIFFWriteBufferSetup(TIFF*, tdata_t, tsize_t);
  233. extern    int TIFFLastDirectory(TIFF*);
  234. extern    int TIFFSetDirectory(TIFF*, tdir_t);
  235. extern    int TIFFSetSubDirectory(TIFF*, uint32);
  236. extern    int TIFFUnlinkDirectory(TIFF*, tdir_t);
  237. extern    int TIFFSetField(TIFF*, ttag_t, ...);
  238. extern    int TIFFVSetField(TIFF*, ttag_t, va_list);
  239. extern    int TIFFWriteDirectory(TIFF *);
  240. #if defined(c_plusplus) || defined(__cplusplus)
  241. extern    void TIFFPrintDirectory(TIFF*, FILE*, long = 0);
  242. extern    int TIFFReadScanline(TIFF*, tdata_t, uint32, tsample_t = 0);
  243. extern    int TIFFWriteScanline(TIFF*, tdata_t, uint32, tsample_t = 0);
  244. extern    int TIFFReadRGBAImage(TIFF*, uint32, uint32, uint32*, int = 0);
  245. #else
  246. extern    void TIFFPrintDirectory(TIFF*, FILE*, long);
  247. extern    int TIFFReadScanline(TIFF*, tdata_t, uint32, tsample_t);
  248. extern    int TIFFWriteScanline(TIFF*, tdata_t, uint32, tsample_t);
  249. extern    int TIFFReadRGBAImage(TIFF*, uint32, uint32, uint32*, int);
  250. #endif
  251. extern    int TIFFRGBAImageOK(TIFF*, char [1024]);
  252. extern    int TIFFRGBAImageBegin(TIFFRGBAImage*, TIFF*, int, char [1024]);
  253. extern    int TIFFRGBAImageGet(TIFFRGBAImage*, uint32*, uint32, uint32);
  254. extern    void TIFFRGBAImageEnd(TIFFRGBAImage*);
  255. extern    TIFF* TIFFOpen(const char*, const char*);
  256. extern    TIFF* TIFFFdOpen(int, const char*, const char*);
  257. extern    TIFF* TIFFClientOpen(const char*, const char*,
  258.         thandle_t,
  259.         TIFFReadWriteProc, TIFFReadWriteProc,
  260.         TIFFSeekProc, TIFFCloseProc,
  261.         TIFFSizeProc,
  262.         TIFFMapFileProc, TIFFUnmapFileProc);
  263. extern    const char* TIFFFileName(TIFF*);
  264. extern    void TIFFError(const char*, const char*, ...);
  265. extern    void TIFFWarning(const char*, const char*, ...);
  266. extern    TIFFErrorHandler TIFFSetErrorHandler(TIFFErrorHandler);
  267. extern    TIFFErrorHandler TIFFSetWarningHandler(TIFFErrorHandler);
  268. extern    TIFFExtendProc TIFFSetTagExtender(TIFFExtendProc);
  269. extern    ttile_t TIFFComputeTile(TIFF*, uint32, uint32, uint32, tsample_t);
  270. extern    int TIFFCheckTile(TIFF*, uint32, uint32, uint32, tsample_t);
  271. extern    ttile_t TIFFNumberOfTiles(TIFF*);
  272. extern    tsize_t TIFFReadTile(TIFF*,
  273.         tdata_t, uint32, uint32, uint32, tsample_t);
  274. extern    tsize_t TIFFWriteTile(TIFF*,
  275.         tdata_t, uint32, uint32, uint32, tsample_t);
  276. extern    tstrip_t TIFFComputeStrip(TIFF*, uint32, tsample_t);
  277. extern    tstrip_t TIFFNumberOfStrips(TIFF*);
  278. extern    tsize_t TIFFReadEncodedStrip(TIFF*, tstrip_t, tdata_t, tsize_t);
  279. extern    tsize_t TIFFReadRawStrip(TIFF*, tstrip_t, tdata_t, tsize_t);
  280. extern    tsize_t TIFFReadEncodedTile(TIFF*, ttile_t, tdata_t, tsize_t);
  281. extern    tsize_t TIFFReadRawTile(TIFF*, ttile_t, tdata_t, tsize_t);
  282. extern    tsize_t TIFFWriteEncodedStrip(TIFF*, tstrip_t, tdata_t, tsize_t);
  283. extern    tsize_t TIFFWriteRawStrip(TIFF*, tstrip_t, tdata_t, tsize_t);
  284. extern    tsize_t TIFFWriteEncodedTile(TIFF*, ttile_t, tdata_t, tsize_t);
  285. extern    tsize_t TIFFWriteRawTile(TIFF*, ttile_t, tdata_t, tsize_t);
  286. extern    void TIFFSetWriteOffset(TIFF*, toff_t);
  287. extern    void TIFFSwabShort(uint16*);
  288. extern    void TIFFSwabLong(uint32*);
  289. extern    void TIFFSwabDouble(double*);
  290. extern    void TIFFSwabArrayOfShort(uint16*, unsigned long);
  291. extern    void TIFFSwabArrayOfLong(uint32*, unsigned long);
  292. extern    void TIFFSwabArrayOfDouble(double*, unsigned long);
  293. extern    void TIFFReverseBits(unsigned char *, unsigned long);
  294. extern    const unsigned char* TIFFGetBitRevTable(int);
  295. #if defined(__cplusplus)
  296. }
  297. #endif
  298. #endif /* _TIFFIO_ */
  299.