tiffio.h
上传用户:looem2003
上传日期:2014-07-20
资源大小:13733k
文件大小:19k
源码类别:

打印编程

开发平台:

Visual C++

  1. /* $Id: tiffio.h,v 1.50 2006/03/21 16:37:51 dron Exp $ */
  2. /*
  3.  * Copyright (c) 1988-1997 Sam Leffler
  4.  * Copyright (c) 1991-1997 Silicon Graphics, Inc.
  5.  *
  6.  * Permission to use, copy, modify, distribute, and sell this software and 
  7.  * its documentation for any purpose is hereby granted without fee, provided
  8.  * that (i) the above copyright notices and this permission notice appear in
  9.  * all copies of the software and related documentation, and (ii) the names of
  10.  * Sam Leffler and Silicon Graphics may not be used in any advertising or
  11.  * publicity relating to the software without the specific, prior written
  12.  * permission of Sam Leffler and Silicon Graphics.
  13.  * 
  14.  * THE SOFTWARE IS PROVIDED "AS-IS" AND WITHOUT WARRANTY OF ANY KIND, 
  15.  * EXPRESS, IMPLIED OR OTHERWISE, INCLUDING WITHOUT LIMITATION, ANY 
  16.  * WARRANTY OF MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE.  
  17.  * 
  18.  * IN NO EVENT SHALL SAM LEFFLER OR SILICON GRAPHICS BE LIABLE FOR
  19.  * ANY SPECIAL, INCIDENTAL, INDIRECT OR CONSEQUENTIAL DAMAGES OF ANY KIND,
  20.  * OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS,
  21.  * WHETHER OR NOT ADVISED OF THE POSSIBILITY OF DAMAGE, AND ON ANY THEORY OF
  22.  * LIABILITY, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE
  23.  * OF THIS SOFTWARE.
  24.  */
  25. #ifndef _TIFFIO_
  26. #define _TIFFIO_
  27. /*
  28.  * TIFF I/O Library Definitions.
  29.  */
  30. #include "tiff.h"
  31. #include "tiffvers.h"
  32. /*
  33.  * TIFF is defined as an incomplete type to hide the
  34.  * library's internal data structures from clients.
  35.  */
  36. typedef struct tiff TIFF;
  37. /*
  38.  * The following typedefs define the intrinsic size of
  39.  * data types used in the *exported* interfaces.  These
  40.  * definitions depend on the proper definition of types
  41.  * in tiff.h.  Note also that the varargs interface used
  42.  * to pass tag types and values uses the types defined in
  43.  * tiff.h directly.
  44.  *
  45.  * NB: ttag_t is unsigned int and not unsigned short because
  46.  *     ANSI C requires that the type before the ellipsis be a
  47.  *     promoted type (i.e. one of int, unsigned int, pointer,
  48.  *     or double) and because we defined pseudo-tags that are
  49.  *     outside the range of legal Aldus-assigned tags.
  50.  * NB: tsize_t is int32 and not uint32 because some functions
  51.  *     return -1.
  52.  * NB: toff_t is not off_t for many reasons; TIFFs max out at
  53.  *     32-bit file offsets being the most important, and to ensure
  54.  *     that it is unsigned, rather than signed.
  55.  */
  56. typedef uint32 ttag_t; /* directory tag */
  57. typedef uint16 tdir_t; /* directory index */
  58. typedef uint16 tsample_t; /* sample number */
  59. typedef uint32 tstrip_t; /* strip number */
  60. typedef uint32 ttile_t; /* tile number */
  61. typedef int32 tsize_t; /* i/o size in bytes */
  62. typedef void* tdata_t; /* image data ref */
  63. typedef uint32 toff_t; /* file offset */
  64. #if !defined(__WIN32__) && (defined(_WIN32) || defined(WIN32))
  65. #define __WIN32__
  66. #endif
  67. /*
  68.  * On windows you should define USE_WIN32_FILEIO if you are using tif_win32.c
  69.  * or AVOID_WIN32_FILEIO if you are using something else (like tif_unix.c).
  70.  *
  71.  * By default tif_unix.c is assumed.
  72.  */
  73. #if defined(_WINDOWS) || defined(__WIN32__) || defined(_Windows)
  74. #  if !defined(__CYGWIN) && !defined(AVOID_WIN32_FILEIO) && !defined(USE_WIN32_FILEIO)
  75. #    define AVOID_WIN32_FILEIO
  76. #  endif
  77. #endif
  78. #if defined(USE_WIN32_FILEIO)
  79. # define VC_EXTRALEAN
  80. # include <windows.h>
  81. # ifdef __WIN32__
  82. DECLARE_HANDLE(thandle_t); /* Win32 file handle */
  83. # else
  84. typedef HFILE thandle_t; /* client data handle */
  85. # endif /* __WIN32__ */
  86. #else
  87. typedef void* thandle_t; /* client data handle */
  88. #endif /* USE_WIN32_FILEIO */
  89. #ifndef NULL
  90. # define NULL (void *)0
  91. #endif
  92. /*
  93.  * Flags to pass to TIFFPrintDirectory to control
  94.  * printing of data structures that are potentially
  95.  * very large.   Bit-or these flags to enable printing
  96.  * multiple items.
  97.  */
  98. #define TIFFPRINT_NONE 0x0 /* no extra info */
  99. #define TIFFPRINT_STRIPS 0x1 /* strips/tiles info */
  100. #define TIFFPRINT_CURVES 0x2 /* color/gray response curves */
  101. #define TIFFPRINT_COLORMAP 0x4 /* colormap */
  102. #define TIFFPRINT_JPEGQTABLES 0x100 /* JPEG Q matrices */
  103. #define TIFFPRINT_JPEGACTABLES 0x200 /* JPEG AC tables */
  104. #define TIFFPRINT_JPEGDCTABLES 0x200 /* JPEG DC tables */
  105. /* 
  106.  * Colour conversion stuff
  107.  */
  108. /* reference white */
  109. #define D65_X0 (95.0470F)
  110. #define D65_Y0 (100.0F)
  111. #define D65_Z0 (108.8827F)
  112. #define D50_X0 (96.4250F)
  113. #define D50_Y0 (100.0F)
  114. #define D50_Z0 (82.4680F)
  115. /* Structure for holding information about a display device. */
  116. typedef unsigned char TIFFRGBValue; /* 8-bit samples */
  117. typedef struct {
  118. float d_mat[3][3];  /* XYZ -> luminance matrix */
  119. float d_YCR; /* Light o/p for reference white */
  120. float d_YCG;
  121. float d_YCB;
  122. uint32 d_Vrwr; /* Pixel values for ref. white */
  123. uint32 d_Vrwg;
  124. uint32 d_Vrwb;
  125. float d_Y0R; /* Residual light for black pixel */
  126. float d_Y0G;
  127. float d_Y0B;
  128. float d_gammaR; /* Gamma values for the three guns */
  129. float d_gammaG;
  130. float d_gammaB;
  131. } TIFFDisplay;
  132. typedef struct { /* YCbCr->RGB support */
  133. TIFFRGBValue* clamptab; /* range clamping table */
  134. int* Cr_r_tab;
  135. int* Cb_b_tab;
  136. int32* Cr_g_tab;
  137. int32* Cb_g_tab;
  138.         int32*  Y_tab;
  139. } TIFFYCbCrToRGB;
  140. typedef struct { /* CIE Lab 1976->RGB support */
  141. int range; /* Size of conversion table */
  142. #define CIELABTORGB_TABLE_RANGE 1500
  143. float rstep, gstep, bstep;
  144. float X0, Y0, Z0; /* Reference white point */
  145. TIFFDisplay display;
  146. float Yr2r[CIELABTORGB_TABLE_RANGE + 1];  /* Conversion of Yr to r */
  147. float Yg2g[CIELABTORGB_TABLE_RANGE + 1];  /* Conversion of Yg to g */
  148. float Yb2b[CIELABTORGB_TABLE_RANGE + 1];  /* Conversion of Yb to b */
  149. } TIFFCIELabToRGB;
  150. /*
  151.  * RGBA-style image support.
  152.  */
  153. typedef struct _TIFFRGBAImage TIFFRGBAImage;
  154. /*
  155.  * The image reading and conversion routines invoke
  156.  * ``put routines'' to copy/image/whatever tiles of
  157.  * raw image data.  A default set of routines are 
  158.  * provided to convert/copy raw image data to 8-bit
  159.  * packed ABGR format rasters.  Applications can supply
  160.  * alternate routines that unpack the data into a
  161.  * different format or, for example, unpack the data
  162.  * and draw the unpacked raster on the display.
  163.  */
  164. typedef void (*tileContigRoutine)
  165.     (TIFFRGBAImage*, uint32*, uint32, uint32, uint32, uint32, int32, int32,
  166. unsigned char*);
  167. typedef void (*tileSeparateRoutine)
  168.     (TIFFRGBAImage*, uint32*, uint32, uint32, uint32, uint32, int32, int32,
  169. unsigned char*, unsigned char*, unsigned char*, unsigned char*);
  170. /*
  171.  * RGBA-reader state.
  172.  */
  173. struct _TIFFRGBAImage {
  174. TIFF* tif; /* image handle */
  175. int stoponerr; /* stop on read error */
  176. int isContig; /* data is packed/separate */
  177. int alpha; /* type of alpha data present */
  178. uint32 width; /* image width */
  179. uint32 height; /* image height */
  180. uint16 bitspersample; /* image bits/sample */
  181. uint16 samplesperpixel; /* image samples/pixel */
  182. uint16 orientation; /* image orientation */
  183. uint16 req_orientation; /* requested orientation */
  184. uint16 photometric; /* image photometric interp */
  185. uint16* redcmap; /* colormap pallete */
  186. uint16* greencmap;
  187. uint16* bluecmap;
  188. /* get image data routine */
  189. int (*get)(TIFFRGBAImage*, uint32*, uint32, uint32);
  190. union {
  191.     void (*any)(TIFFRGBAImage*);
  192.     tileContigRoutine contig;
  193.     tileSeparateRoutine separate;
  194. } put; /* put decoded strip/tile */
  195. TIFFRGBValue* Map; /* sample mapping array */
  196. uint32** BWmap; /* black&white map */
  197. uint32** PALmap; /* palette image map */
  198. TIFFYCbCrToRGB* ycbcr; /* YCbCr conversion state */
  199.         TIFFCIELabToRGB* cielab; /* CIE L*a*b conversion state */
  200.         int row_offset;
  201.         int     col_offset;
  202. };
  203. /*
  204.  * Macros for extracting components from the
  205.  * packed ABGR form returned by TIFFReadRGBAImage.
  206.  */
  207. #define TIFFGetR(abgr) ((abgr) & 0xff)
  208. #define TIFFGetG(abgr) (((abgr) >> 8) & 0xff)
  209. #define TIFFGetB(abgr) (((abgr) >> 16) & 0xff)
  210. #define TIFFGetA(abgr) (((abgr) >> 24) & 0xff)
  211. /*
  212.  * A CODEC is a software package that implements decoding,
  213.  * encoding, or decoding+encoding of a compression algorithm.
  214.  * The library provides a collection of builtin codecs.
  215.  * More codecs may be registered through calls to the library
  216.  * and/or the builtin implementations may be overridden.
  217.  */
  218. typedef int (*TIFFInitMethod)(TIFF*, int);
  219. typedef struct {
  220. char* name;
  221. uint16 scheme;
  222. TIFFInitMethod init;
  223. } TIFFCodec;
  224. #include <stdio.h>
  225. #include <stdarg.h>
  226. /* share internal LogLuv conversion routines? */
  227. #ifndef LOGLUV_PUBLIC
  228. #define LOGLUV_PUBLIC 1
  229. #endif
  230. #if defined(c_plusplus) || defined(__cplusplus)
  231. extern "C" {
  232. #endif
  233. typedef void (*TIFFErrorHandler)(const char*, const char*, va_list);
  234. typedef void (*TIFFErrorHandlerExt)(thandle_t, const char*, const char*, va_list);
  235. typedef tsize_t (*TIFFReadWriteProc)(thandle_t, tdata_t, tsize_t);
  236. typedef toff_t (*TIFFSeekProc)(thandle_t, toff_t, int);
  237. typedef int (*TIFFCloseProc)(thandle_t);
  238. typedef toff_t (*TIFFSizeProc)(thandle_t);
  239. typedef int (*TIFFMapFileProc)(thandle_t, tdata_t*, toff_t*);
  240. typedef void (*TIFFUnmapFileProc)(thandle_t, tdata_t, toff_t);
  241. typedef void (*TIFFExtendProc)(TIFF*); 
  242. extern const char* TIFFGetVersion(void);
  243. extern const TIFFCodec* TIFFFindCODEC(uint16);
  244. extern TIFFCodec* TIFFRegisterCODEC(uint16, const char*, TIFFInitMethod);
  245. extern void TIFFUnRegisterCODEC(TIFFCodec*);
  246. extern  int TIFFIsCODECConfigured(uint16);
  247. extern TIFFCodec* TIFFGetConfiguredCODECs(void);
  248. /*
  249.  * Auxiliary functions.
  250.  */
  251. extern tdata_t _TIFFmalloc(tsize_t);
  252. extern tdata_t _TIFFrealloc(tdata_t, tsize_t);
  253. extern void _TIFFmemset(tdata_t, int, tsize_t);
  254. extern void _TIFFmemcpy(tdata_t, const tdata_t, tsize_t);
  255. extern int _TIFFmemcmp(const tdata_t, const tdata_t, tsize_t);
  256. extern void _TIFFfree(tdata_t);
  257. /*
  258. ** Stuff, related to tag handling and creating custom tags.
  259. */
  260. extern  int  TIFFGetTagListCount( TIFF * );
  261. extern  ttag_t TIFFGetTagListEntry( TIFF *, int tag_index );
  262.     
  263. #define TIFF_ANY TIFF_NOTYPE /* for field descriptor searching */
  264. #define TIFF_VARIABLE -1 /* marker for variable length tags */
  265. #define TIFF_SPP -2 /* marker for SamplesPerPixel tags */
  266. #define TIFF_VARIABLE2 -3 /* marker for uint32 var-length tags */
  267. #define FIELD_CUSTOM    65    
  268. typedef struct {
  269. ttag_t field_tag; /* field's tag */
  270. short field_readcount; /* read count/TIFF_VARIABLE/TIFF_SPP */
  271. short field_writecount; /* write count/TIFF_VARIABLE */
  272. TIFFDataType field_type; /* type of associated data */
  273.         unsigned short field_bit; /* bit in fieldsset bit vector */
  274. unsigned char field_oktochange; /* if true, can change while writing */
  275. unsigned char field_passcount; /* if true, pass dir count on set */
  276. char *field_name; /* ASCII name */
  277. } TIFFFieldInfo;
  278. typedef struct _TIFFTagValue {
  279.     const TIFFFieldInfo  *info;
  280.     int             count;
  281.     void           *value;
  282. } TIFFTagValue;
  283. extern void TIFFMergeFieldInfo(TIFF*, const TIFFFieldInfo[], int);
  284. extern const TIFFFieldInfo* TIFFFindFieldInfo(TIFF*, ttag_t, TIFFDataType);
  285. extern  const TIFFFieldInfo* TIFFFindFieldInfoByName(TIFF* , const char *,
  286.      TIFFDataType);
  287. extern const TIFFFieldInfo* TIFFFieldWithTag(TIFF*, ttag_t);
  288. extern const TIFFFieldInfo* TIFFFieldWithName(TIFF*, const char *);
  289. typedef int (*TIFFVSetMethod)(TIFF*, ttag_t, va_list);
  290. typedef int (*TIFFVGetMethod)(TIFF*, ttag_t, va_list);
  291. typedef void (*TIFFPrintMethod)(TIFF*, FILE*, long);
  292.     
  293. typedef struct {
  294.     TIFFVSetMethod vsetfield; /* tag set routine */
  295.     TIFFVGetMethod vgetfield; /* tag get routine */
  296.     TIFFPrintMethod printdir; /* directory print routine */
  297. } TIFFTagMethods;
  298.         
  299. extern  TIFFTagMethods *TIFFAccessTagMethods( TIFF * );
  300. extern  void *TIFFGetClientInfo( TIFF *, const char * );
  301. extern  void TIFFSetClientInfo( TIFF *, void *, const char * );
  302. extern void TIFFCleanup(TIFF*);
  303. extern void TIFFClose(TIFF*);
  304. extern int TIFFFlush(TIFF*);
  305. extern int TIFFFlushData(TIFF*);
  306. extern int TIFFGetField(TIFF*, ttag_t, ...);
  307. extern int TIFFVGetField(TIFF*, ttag_t, va_list);
  308. extern int TIFFGetFieldDefaulted(TIFF*, ttag_t, ...);
  309. extern int TIFFVGetFieldDefaulted(TIFF*, ttag_t, va_list);
  310. extern int TIFFReadDirectory(TIFF*);
  311. extern int TIFFReadCustomDirectory(TIFF*, toff_t, const TIFFFieldInfo[],
  312.     size_t);
  313. extern int TIFFReadEXIFDirectory(TIFF*, toff_t);
  314. extern tsize_t TIFFScanlineSize(TIFF*);
  315. extern tsize_t TIFFRasterScanlineSize(TIFF*);
  316. extern tsize_t TIFFStripSize(TIFF*);
  317. extern tsize_t TIFFRawStripSize(TIFF*, tstrip_t);
  318. extern tsize_t TIFFVStripSize(TIFF*, uint32);
  319. extern tsize_t TIFFTileRowSize(TIFF*);
  320. extern tsize_t TIFFTileSize(TIFF*);
  321. extern tsize_t TIFFVTileSize(TIFF*, uint32);
  322. extern uint32 TIFFDefaultStripSize(TIFF*, uint32);
  323. extern void TIFFDefaultTileSize(TIFF*, uint32*, uint32*);
  324. extern int TIFFFileno(TIFF*);
  325. extern  int TIFFSetFileno(TIFF*, int);
  326. extern  thandle_t TIFFClientdata(TIFF*);
  327. extern  thandle_t TIFFSetClientdata(TIFF*, thandle_t);
  328. extern int TIFFGetMode(TIFF*);
  329. extern int TIFFSetMode(TIFF*, int);
  330. extern int TIFFIsTiled(TIFF*);
  331. extern int TIFFIsByteSwapped(TIFF*);
  332. extern int TIFFIsUpSampled(TIFF*);
  333. extern int TIFFIsMSB2LSB(TIFF*);
  334. extern int TIFFIsBigEndian(TIFF*);
  335. extern TIFFReadWriteProc TIFFGetReadProc(TIFF*);
  336. extern TIFFReadWriteProc TIFFGetWriteProc(TIFF*);
  337. extern TIFFSeekProc TIFFGetSeekProc(TIFF*);
  338. extern TIFFCloseProc TIFFGetCloseProc(TIFF*);
  339. extern TIFFSizeProc TIFFGetSizeProc(TIFF*);
  340. extern TIFFMapFileProc TIFFGetMapFileProc(TIFF*);
  341. extern TIFFUnmapFileProc TIFFGetUnmapFileProc(TIFF*);
  342. extern uint32 TIFFCurrentRow(TIFF*);
  343. extern tdir_t TIFFCurrentDirectory(TIFF*);
  344. extern tdir_t TIFFNumberOfDirectories(TIFF*);
  345. extern uint32 TIFFCurrentDirOffset(TIFF*);
  346. extern tstrip_t TIFFCurrentStrip(TIFF*);
  347. extern ttile_t TIFFCurrentTile(TIFF*);
  348. extern int TIFFReadBufferSetup(TIFF*, tdata_t, tsize_t);
  349. extern int TIFFWriteBufferSetup(TIFF*, tdata_t, tsize_t);
  350. extern int TIFFSetupStrips(TIFF *);
  351. extern  int TIFFWriteCheck(TIFF*, int, const char *);
  352. extern void TIFFFreeDirectory(TIFF*);
  353. extern  int TIFFCreateDirectory(TIFF*);
  354. extern int TIFFLastDirectory(TIFF*);
  355. extern int TIFFSetDirectory(TIFF*, tdir_t);
  356. extern int TIFFSetSubDirectory(TIFF*, uint32);
  357. extern int TIFFUnlinkDirectory(TIFF*, tdir_t);
  358. extern int TIFFSetField(TIFF*, ttag_t, ...);
  359. extern int TIFFVSetField(TIFF*, ttag_t, va_list);
  360. extern int TIFFWriteDirectory(TIFF *);
  361. extern int TIFFCheckpointDirectory(TIFF *);
  362. extern int TIFFRewriteDirectory(TIFF *);
  363. extern int TIFFReassignTagToIgnore(enum TIFFIgnoreSense, int);
  364. #if defined(c_plusplus) || defined(__cplusplus)
  365. extern void TIFFPrintDirectory(TIFF*, FILE*, long = 0);
  366. extern int TIFFReadScanline(TIFF*, tdata_t, uint32, tsample_t = 0);
  367. extern int TIFFWriteScanline(TIFF*, tdata_t, uint32, tsample_t = 0);
  368. extern int TIFFReadRGBAImage(TIFF*, uint32, uint32, uint32*, int = 0);
  369. extern int TIFFReadRGBAImageOriented(TIFF*, uint32, uint32, uint32*,
  370.       int = ORIENTATION_BOTLEFT, int = 0);
  371. #else
  372. extern void TIFFPrintDirectory(TIFF*, FILE*, long);
  373. extern int TIFFReadScanline(TIFF*, tdata_t, uint32, tsample_t);
  374. extern int TIFFWriteScanline(TIFF*, tdata_t, uint32, tsample_t);
  375. extern int TIFFReadRGBAImage(TIFF*, uint32, uint32, uint32*, int);
  376. extern int TIFFReadRGBAImageOriented(TIFF*, uint32, uint32, uint32*, int, int);
  377. #endif
  378. extern int TIFFReadRGBAStrip(TIFF*, tstrip_t, uint32 * );
  379. extern int TIFFReadRGBATile(TIFF*, uint32, uint32, uint32 * );
  380. extern int TIFFRGBAImageOK(TIFF*, char [1024]);
  381. extern int TIFFRGBAImageBegin(TIFFRGBAImage*, TIFF*, int, char [1024]);
  382. extern int TIFFRGBAImageGet(TIFFRGBAImage*, uint32*, uint32, uint32);
  383. extern void TIFFRGBAImageEnd(TIFFRGBAImage*);
  384. extern TIFF* TIFFOpen(const char*, const char*);
  385. # ifdef __WIN32__
  386. extern TIFF* TIFFOpenW(const wchar_t*, const char*);
  387. # endif /* __WIN32__ */
  388. extern TIFF* TIFFFdOpen(int, const char*, const char*);
  389. extern TIFF* TIFFClientOpen(const char*, const char*,
  390.     thandle_t,
  391.     TIFFReadWriteProc, TIFFReadWriteProc,
  392.     TIFFSeekProc, TIFFCloseProc,
  393.     TIFFSizeProc,
  394.     TIFFMapFileProc, TIFFUnmapFileProc);
  395. extern const char* TIFFFileName(TIFF*);
  396. extern const char* TIFFSetFileName(TIFF*, const char *);
  397. extern void TIFFError(const char*, const char*, ...);
  398. extern void TIFFErrorExt(thandle_t, const char*, const char*, ...);
  399. extern void TIFFWarning(const char*, const char*, ...);
  400. extern void TIFFWarningExt(thandle_t, const char*, const char*, ...);
  401. extern TIFFErrorHandler TIFFSetErrorHandler(TIFFErrorHandler);
  402. extern TIFFErrorHandlerExt TIFFSetErrorHandlerExt(TIFFErrorHandlerExt);
  403. extern TIFFErrorHandler TIFFSetWarningHandler(TIFFErrorHandler);
  404. extern TIFFErrorHandlerExt TIFFSetWarningHandlerExt(TIFFErrorHandlerExt);
  405. extern TIFFExtendProc TIFFSetTagExtender(TIFFExtendProc);
  406. extern ttile_t TIFFComputeTile(TIFF*, uint32, uint32, uint32, tsample_t);
  407. extern int TIFFCheckTile(TIFF*, uint32, uint32, uint32, tsample_t);
  408. extern ttile_t TIFFNumberOfTiles(TIFF*);
  409. extern tsize_t TIFFReadTile(TIFF*,
  410.     tdata_t, uint32, uint32, uint32, tsample_t);
  411. extern tsize_t TIFFWriteTile(TIFF*,
  412.     tdata_t, uint32, uint32, uint32, tsample_t);
  413. extern tstrip_t TIFFComputeStrip(TIFF*, uint32, tsample_t);
  414. extern tstrip_t TIFFNumberOfStrips(TIFF*);
  415. extern tsize_t TIFFReadEncodedStrip(TIFF*, tstrip_t, tdata_t, tsize_t);
  416. extern tsize_t TIFFReadRawStrip(TIFF*, tstrip_t, tdata_t, tsize_t);
  417. extern tsize_t TIFFReadEncodedTile(TIFF*, ttile_t, tdata_t, tsize_t);
  418. extern tsize_t TIFFReadRawTile(TIFF*, ttile_t, tdata_t, tsize_t);
  419. extern tsize_t TIFFWriteEncodedStrip(TIFF*, tstrip_t, tdata_t, tsize_t);
  420. extern tsize_t TIFFWriteRawStrip(TIFF*, tstrip_t, tdata_t, tsize_t);
  421. extern tsize_t TIFFWriteEncodedTile(TIFF*, ttile_t, tdata_t, tsize_t);
  422. extern tsize_t TIFFWriteRawTile(TIFF*, ttile_t, tdata_t, tsize_t);
  423. extern int TIFFDataWidth(TIFFDataType);    /* table of tag datatype widths */
  424. extern void TIFFSetWriteOffset(TIFF*, toff_t);
  425. extern void TIFFSwabShort(uint16*);
  426. extern void TIFFSwabLong(uint32*);
  427. extern void TIFFSwabDouble(double*);
  428. extern void TIFFSwabArrayOfShort(uint16*, unsigned long);
  429. extern void TIFFSwabArrayOfTriples(uint8*, unsigned long);
  430. extern void TIFFSwabArrayOfLong(uint32*, unsigned long);
  431. extern void TIFFSwabArrayOfDouble(double*, unsigned long);
  432. extern void TIFFReverseBits(unsigned char *, unsigned long);
  433. extern const unsigned char* TIFFGetBitRevTable(int);
  434. #ifdef LOGLUV_PUBLIC
  435. #define U_NEU 0.210526316
  436. #define V_NEU 0.473684211
  437. #define UVSCALE 410.
  438. extern double LogL16toY(int);
  439. extern double LogL10toY(int);
  440. extern void XYZtoRGB24(float*, uint8*);
  441. extern int uv_decode(double*, double*, int);
  442. extern void LogLuv24toXYZ(uint32, float*);
  443. extern void LogLuv32toXYZ(uint32, float*);
  444. #if defined(c_plusplus) || defined(__cplusplus)
  445. extern int LogL16fromY(double, int = SGILOGENCODE_NODITHER);
  446. extern int LogL10fromY(double, int = SGILOGENCODE_NODITHER);
  447. extern int uv_encode(double, double, int = SGILOGENCODE_NODITHER);
  448. extern uint32 LogLuv24fromXYZ(float*, int = SGILOGENCODE_NODITHER);
  449. extern uint32 LogLuv32fromXYZ(float*, int = SGILOGENCODE_NODITHER);
  450. #else
  451. extern int LogL16fromY(double, int);
  452. extern int LogL10fromY(double, int);
  453. extern int uv_encode(double, double, int);
  454. extern uint32 LogLuv24fromXYZ(float*, int);
  455. extern uint32 LogLuv32fromXYZ(float*, int);
  456. #endif
  457. #endif /* LOGLUV_PUBLIC */
  458.     
  459. extern int TIFFCIELabToRGBInit(TIFFCIELabToRGB*, TIFFDisplay *, float*);
  460. extern void TIFFCIELabToXYZ(TIFFCIELabToRGB *, uint32, int32, int32,
  461.     float *, float *, float *);
  462. extern void TIFFXYZToRGB(TIFFCIELabToRGB *, float, float, float,
  463.  uint32 *, uint32 *, uint32 *);
  464. extern int TIFFYCbCrToRGBInit(TIFFYCbCrToRGB*, float*, float*);
  465. extern void TIFFYCbCrtoRGB(TIFFYCbCrToRGB *, uint32, int32, int32,
  466.    uint32 *, uint32 *, uint32 *);
  467. #if defined(c_plusplus) || defined(__cplusplus)
  468. }
  469. #endif
  470. #endif /* _TIFFIO_ */
  471. /* vim: set ts=8 sts=8 sw=8 noet: */