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

打印编程

开发平台:

Visual C++

  1. /* $Id: tiffiop.h,v 1.46 2006/03/16 12:22:27 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. #include <fcntl.h>
  26. #ifndef _TIFFIOP_
  27. #define _TIFFIOP_
  28. /*
  29.  * ``Library-private'' definitions.
  30.  */
  31. #include "tif_config.h.in"
  32. #ifdef HAVE_FCNTL_H
  33. # include <fcntl.h>
  34. #endif
  35. #ifdef HAVE_SYS_TYPES_H
  36. # include <sys/types.h>
  37. #endif
  38. #define HAVE_STRING_H
  39. #ifdef HAVE_STRING_H
  40. # include <string.h>
  41. #endif
  42. #ifdef HAVE_ASSERT_H
  43. # include <assert.h>
  44. #else
  45. # define assert(x) 
  46. #endif
  47. #define HAVE_SEARCH_H
  48. #ifdef HAVE_SEARCH_H
  49. # include <search.h>
  50. #else
  51. extern void *lfind(const void *, const void *, size_t *, size_t,
  52.    int (*)(const void *, const void *));
  53. #endif
  54. #include "tiffio.h"
  55. #include "tif_dir.h"
  56. #ifndef STRIP_SIZE_DEFAULT
  57. # define STRIP_SIZE_DEFAULT 8192
  58. #endif
  59. #define    streq(a,b)      (strcmp(a,b) == 0)
  60. #ifndef TRUE
  61. #define TRUE 1
  62. #define FALSE 0
  63. #endif
  64. typedef struct client_info {
  65.     struct client_info *next;
  66.     void      *data;
  67.     char      *name;
  68. } TIFFClientInfoLink;
  69. /*
  70.  * Typedefs for ``method pointers'' used internally.
  71.  */
  72. typedef unsigned char tidataval_t; /* internal image data value type */
  73. typedef tidataval_t* tidata_t; /* reference to internal image data */
  74. typedef void (*TIFFVoidMethod)(TIFF*);
  75. typedef int (*TIFFBoolMethod)(TIFF*);
  76. typedef int (*TIFFPreMethod)(TIFF*, tsample_t);
  77. typedef int (*TIFFCodeMethod)(TIFF*, tidata_t, tsize_t, tsample_t);
  78. typedef int (*TIFFSeekMethod)(TIFF*, uint32);
  79. typedef void (*TIFFPostMethod)(TIFF*, tidata_t, tsize_t);
  80. typedef uint32 (*TIFFStripMethod)(TIFF*, uint32);
  81. typedef void (*TIFFTileMethod)(TIFF*, uint32*, uint32*);
  82. struct tiff {
  83. char* tif_name; /* name of open file */
  84. int tif_fd; /* open file descriptor */
  85. int tif_mode; /* open mode (O_*) */
  86. uint32 tif_flags;
  87. #define TIFF_FILLORDER 0x0003 /* natural bit fill order for machine */
  88. #define TIFF_DIRTYHEADER 0x0004 /* header must be written on close */
  89. #define TIFF_DIRTYDIRECT 0x0008 /* current directory must be written */
  90. #define TIFF_BUFFERSETUP 0x0010 /* data buffers setup */
  91. #define TIFF_CODERSETUP 0x0020 /* encoder/decoder setup done */
  92. #define TIFF_BEENWRITING 0x0040 /* written 1+ scanlines to file */
  93. #define TIFF_SWAB 0x0080 /* byte swap file information */
  94. #define TIFF_NOBITREV 0x0100 /* inhibit bit reversal logic */
  95. #define TIFF_MYBUFFER 0x0200 /* my raw data buffer; free on close */
  96. #define TIFF_ISTILED 0x0400 /* file is tile, not strip- based */
  97. #define TIFF_MAPPED 0x0800 /* file is mapped into memory */
  98. #define TIFF_POSTENCODE 0x1000 /* need call to postencode routine */
  99. #define TIFF_INSUBIFD 0x2000 /* currently writing a subifd */
  100. #define TIFF_UPSAMPLED 0x4000 /* library is doing data up-sampling */ 
  101. #define TIFF_STRIPCHOP 0x8000 /* enable strip chopping support */
  102. #define TIFF_HEADERONLY 0x10000 /* read header only, do not process */
  103. /* the first directory */
  104. toff_t tif_diroff; /* file offset of current directory */
  105. toff_t tif_nextdiroff; /* file offset of following directory */
  106. toff_t* tif_dirlist; /* list of offsets to already seen */
  107. /* directories to prevent IFD looping */
  108. uint16 tif_dirnumber;  /* number of already seen directories */
  109. TIFFDirectory tif_dir; /* internal rep of current directory */
  110. TIFFHeader tif_header; /* file's header block */
  111. const int* tif_typeshift; /* data type shift counts */
  112. const long* tif_typemask; /* data type masks */
  113. uint32 tif_row; /* current scanline */
  114. tdir_t tif_curdir; /* current directory (index) */
  115. tstrip_t tif_curstrip; /* current strip for read/write */
  116. toff_t tif_curoff; /* current offset for read/write */
  117. toff_t tif_dataoff; /* current offset for writing dir */
  118. /* SubIFD support */
  119. uint16 tif_nsubifd; /* remaining subifds to write */
  120. toff_t tif_subifdoff; /* offset for patching SubIFD link */
  121. /* tiling support */
  122. uint32  tif_col; /* current column (offset by row too) */
  123. ttile_t tif_curtile; /* current tile for read/write */
  124. tsize_t tif_tilesize; /* # of bytes in a tile */
  125. /* compression scheme hooks */
  126. int tif_decodestatus;
  127. TIFFBoolMethod tif_setupdecode;/* called once before predecode */
  128. TIFFPreMethod tif_predecode; /* pre- row/strip/tile decoding */
  129. TIFFBoolMethod tif_setupencode;/* called once before preencode */
  130. int tif_encodestatus;
  131. TIFFPreMethod tif_preencode; /* pre- row/strip/tile encoding */
  132. TIFFBoolMethod tif_postencode; /* post- row/strip/tile encoding */
  133. TIFFCodeMethod tif_decoderow; /* scanline decoding routine */
  134. TIFFCodeMethod tif_encoderow; /* scanline encoding routine */
  135. TIFFCodeMethod tif_decodestrip;/* strip decoding routine */
  136. TIFFCodeMethod tif_encodestrip;/* strip encoding routine */
  137. TIFFCodeMethod tif_decodetile; /* tile decoding routine */
  138. TIFFCodeMethod tif_encodetile; /* tile encoding routine */
  139. TIFFVoidMethod tif_close; /* cleanup-on-close routine */
  140. TIFFSeekMethod tif_seek; /* position within a strip routine */
  141. TIFFVoidMethod tif_cleanup; /* cleanup state routine */
  142. TIFFStripMethod tif_defstripsize;/* calculate/constrain strip size */
  143. TIFFTileMethod tif_deftilesize;/* calculate/constrain tile size */
  144. tidata_t tif_data; /* compression scheme private data */
  145. /* input/output buffering */
  146. tsize_t tif_scanlinesize;/* # of bytes in a scanline */
  147. tsize_t tif_scanlineskew;/* scanline skew for reading strips */
  148. tidata_t tif_rawdata; /* raw data buffer */
  149. tsize_t tif_rawdatasize;/* # of bytes in raw data buffer */
  150. tidata_t tif_rawcp; /* current spot in raw buffer */
  151. tsize_t tif_rawcc; /* bytes unread from raw buffer */
  152. /* memory-mapped file support */
  153. tidata_t tif_base; /* base of mapped file */
  154. toff_t tif_size; /* size of mapped file region (bytes) */
  155. TIFFMapFileProc tif_mapproc; /* map file method */
  156. TIFFUnmapFileProc tif_unmapproc;/* unmap file method */
  157. /* input/output callback methods */
  158. thandle_t tif_clientdata; /* callback parameter */
  159. TIFFReadWriteProc tif_readproc; /* read method */
  160. TIFFReadWriteProc tif_writeproc;/* write method */
  161. TIFFSeekProc tif_seekproc; /* lseek method */
  162. TIFFCloseProc tif_closeproc; /* close method */
  163. TIFFSizeProc tif_sizeproc; /* filesize method */
  164. /* post-decoding support */
  165. TIFFPostMethod tif_postdecode; /* post decoding routine */
  166. /* tag support */
  167. TIFFFieldInfo** tif_fieldinfo; /* sorted table of registered tags */
  168. size_t tif_nfields; /* # entries in registered tag table */
  169. const TIFFFieldInfo *tif_foundfield;/* cached pointer to already found tag */
  170.         TIFFTagMethods  tif_tagmethods; /* tag get/set/print routines */
  171.         TIFFClientInfoLink *tif_clientinfo; /* extra client information. */
  172. };
  173. #define isPseudoTag(t) (t > 0xffff) /* is tag value normal or pseudo */
  174. #define isTiled(tif) (((tif)->tif_flags & TIFF_ISTILED) != 0)
  175. #define isMapped(tif) (((tif)->tif_flags & TIFF_MAPPED) != 0)
  176. #define isFillOrder(tif, o) (((tif)->tif_flags & (o)) != 0)
  177. #define isUpSampled(tif) (((tif)->tif_flags & TIFF_UPSAMPLED) != 0)
  178. #define TIFFReadFile(tif, buf, size) 
  179. ((*(tif)->tif_readproc)((tif)->tif_clientdata,buf,size))
  180. #define TIFFWriteFile(tif, buf, size) 
  181. ((*(tif)->tif_writeproc)((tif)->tif_clientdata,buf,size))
  182. #define TIFFSeekFile(tif, off, whence) 
  183. ((*(tif)->tif_seekproc)((tif)->tif_clientdata,(toff_t)(off),whence))
  184. #define TIFFCloseFile(tif) 
  185. ((*(tif)->tif_closeproc)((tif)->tif_clientdata))
  186. #define TIFFGetFileSize(tif) 
  187. ((*(tif)->tif_sizeproc)((tif)->tif_clientdata))
  188. #define TIFFMapFileContents(tif, paddr, psize) 
  189. ((*(tif)->tif_mapproc)((tif)->tif_clientdata,paddr,psize))
  190. #define TIFFUnmapFileContents(tif, addr, size) 
  191. ((*(tif)->tif_unmapproc)((tif)->tif_clientdata,addr,size))
  192. /*
  193.  * Default Read/Seek/Write definitions.
  194.  */
  195. #ifndef ReadOK
  196. #define ReadOK(tif, buf, size) 
  197. (TIFFReadFile(tif, (tdata_t) buf, (tsize_t)(size)) == (tsize_t)(size))
  198. #endif
  199. #ifndef SeekOK
  200. #define SeekOK(tif, off) 
  201. (TIFFSeekFile(tif, (toff_t) off, SEEK_SET) == (toff_t) off)
  202. #endif
  203. #ifndef WriteOK
  204. #define WriteOK(tif, buf, size) 
  205. (TIFFWriteFile(tif, (tdata_t) buf, (tsize_t) size) == (tsize_t) size)
  206. #endif
  207. /* NB: the uint32 casts are to silence certain ANSI-C compilers */
  208. #define TIFFhowmany(x, y) ((((uint32)(x))+(((uint32)(y))-1))/((uint32)(y)))
  209. #define TIFFhowmany8(x) (((x)&0x07)?((uint32)(x)>>3)+1:(uint32)(x)>>3)
  210. #define TIFFroundup(x, y) (TIFFhowmany(x,y)*(y))
  211. #define TIFFmax(A,B) ((A)>(B)?(A):(B))
  212. #define TIFFmin(A,B) ((A)<(B)?(A):(B))
  213. #define TIFFArrayCount(a) (sizeof (a) / sizeof ((a)[0]))
  214. #if defined(__cplusplus)
  215. extern "C" {
  216. #endif
  217. extern int _TIFFgetMode(const char*, const char*);
  218. extern int _TIFFNoRowEncode(TIFF*, tidata_t, tsize_t, tsample_t);
  219. extern int _TIFFNoStripEncode(TIFF*, tidata_t, tsize_t, tsample_t);
  220. extern int _TIFFNoTileEncode(TIFF*, tidata_t, tsize_t, tsample_t);
  221. extern int _TIFFNoRowDecode(TIFF*, tidata_t, tsize_t, tsample_t);
  222. extern int _TIFFNoStripDecode(TIFF*, tidata_t, tsize_t, tsample_t);
  223. extern int _TIFFNoTileDecode(TIFF*, tidata_t, tsize_t, tsample_t);
  224. extern void _TIFFNoPostDecode(TIFF*, tidata_t, tsize_t);
  225. extern  int  _TIFFNoPreCode (TIFF*, tsample_t); 
  226. extern int _TIFFNoSeek(TIFF*, uint32);
  227. extern void _TIFFSwab16BitData(TIFF*, tidata_t, tsize_t);
  228. extern void _TIFFSwab24BitData(TIFF*, tidata_t, tsize_t);
  229. extern void _TIFFSwab32BitData(TIFF*, tidata_t, tsize_t);
  230. extern void _TIFFSwab64BitData(TIFF*, tidata_t, tsize_t);
  231. extern int TIFFFlushData1(TIFF*);
  232. extern int TIFFDefaultDirectory(TIFF*);
  233. extern void _TIFFSetDefaultCompressionState(TIFF*);
  234. extern int TIFFSetCompressionScheme(TIFF*, int);
  235. extern int TIFFSetDefaultCompressionState(TIFF*);
  236. extern uint32 _TIFFDefaultStripSize(TIFF*, uint32);
  237. extern void _TIFFDefaultTileSize(TIFF*, uint32*, uint32*);
  238. extern int _TIFFDataSize(TIFFDataType);
  239. extern void _TIFFsetByteArray(void**, void*, uint32);
  240. extern void _TIFFsetString(char**, char*);
  241. extern void _TIFFsetShortArray(uint16**, uint16*, uint32);
  242. extern void _TIFFsetLongArray(uint32**, uint32*, uint32);
  243. extern void _TIFFsetFloatArray(float**, float*, uint32);
  244. extern void _TIFFsetDoubleArray(double**, double*, uint32);
  245. extern void _TIFFprintAscii(FILE*, const char*);
  246. extern void _TIFFprintAsciiTag(FILE*, const char*, const char*);
  247. extern TIFFErrorHandler _TIFFwarningHandler;
  248. extern TIFFErrorHandler _TIFFerrorHandler;
  249. extern TIFFErrorHandlerExt _TIFFwarningHandlerExt;
  250. extern TIFFErrorHandlerExt _TIFFerrorHandlerExt;
  251. extern tdata_t _TIFFCheckMalloc(TIFF*, size_t, size_t, const char*);
  252. extern int TIFFInitDumpMode(TIFF*, int);
  253. #ifdef PACKBITS_SUPPORT
  254. extern int TIFFInitPackBits(TIFF*, int);
  255. #endif
  256. #ifdef CCITT_SUPPORT
  257. extern int TIFFInitCCITTRLE(TIFF*, int), TIFFInitCCITTRLEW(TIFF*, int);
  258. extern int TIFFInitCCITTFax3(TIFF*, int), TIFFInitCCITTFax4(TIFF*, int);
  259. #endif
  260. #ifdef THUNDER_SUPPORT
  261. extern int TIFFInitThunderScan(TIFF*, int);
  262. #endif
  263. #ifdef NEXT_SUPPORT
  264. extern int TIFFInitNeXT(TIFF*, int);
  265. #endif
  266. #ifdef LZW_SUPPORT
  267. extern int TIFFInitLZW(TIFF*, int);
  268. #endif
  269. #ifdef OJPEG_SUPPORT
  270. extern int TIFFInitOJPEG(TIFF*, int);
  271. #endif
  272. #ifdef JPEG_SUPPORT
  273. extern int TIFFInitJPEG(TIFF*, int);
  274. #endif
  275. #ifdef JBIG_SUPPORT
  276. extern int TIFFInitJBIG(TIFF*, int);
  277. #endif
  278. #ifdef ZIP_SUPPORT
  279. extern int TIFFInitZIP(TIFF*, int);
  280. #endif
  281. #ifdef PIXARLOG_SUPPORT
  282. extern int TIFFInitPixarLog(TIFF*, int);
  283. #endif
  284. #ifdef LOGLUV_SUPPORT
  285. extern int TIFFInitSGILog(TIFF*, int);
  286. #endif
  287. #ifdef VMS
  288. extern const TIFFCodec _TIFFBuiltinCODECS[];
  289. #else
  290. extern TIFFCodec _TIFFBuiltinCODECS[];
  291. #endif
  292. #if defined(__cplusplus)
  293. }
  294. #endif
  295. #endif /* _TIFFIOP_ */
  296. /* vim: set ts=8 sts=8 sw=8 noet: */