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

打印编程

开发平台:

Visual C++

  1. /* $Id: tif_open.c,v 1.31 2006/03/16 12:23:02 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. /*
  26.  * TIFF Library.
  27.  */
  28. #include "tiffiop.h"
  29. static const long typemask[13] = {
  30. (long)0L, /* TIFF_NOTYPE */
  31. (long)0x000000ffL, /* TIFF_BYTE */
  32. (long)0xffffffffL, /* TIFF_ASCII */
  33. (long)0x0000ffffL, /* TIFF_SHORT */
  34. (long)0xffffffffL, /* TIFF_LONG */
  35. (long)0xffffffffL, /* TIFF_RATIONAL */
  36. (long)0x000000ffL, /* TIFF_SBYTE */
  37. (long)0x000000ffL, /* TIFF_UNDEFINED */
  38. (long)0x0000ffffL, /* TIFF_SSHORT */
  39. (long)0xffffffffL, /* TIFF_SLONG */
  40. (long)0xffffffffL, /* TIFF_SRATIONAL */
  41. (long)0xffffffffL, /* TIFF_FLOAT */
  42. (long)0xffffffffL, /* TIFF_DOUBLE */
  43. };
  44. static const int bigTypeshift[13] = {
  45. 0, /* TIFF_NOTYPE */
  46. 24, /* TIFF_BYTE */
  47. 0, /* TIFF_ASCII */
  48. 16, /* TIFF_SHORT */
  49. 0, /* TIFF_LONG */
  50. 0, /* TIFF_RATIONAL */
  51. 24, /* TIFF_SBYTE */
  52. 24, /* TIFF_UNDEFINED */
  53. 16, /* TIFF_SSHORT */
  54. 0, /* TIFF_SLONG */
  55. 0, /* TIFF_SRATIONAL */
  56. 0, /* TIFF_FLOAT */
  57. 0, /* TIFF_DOUBLE */
  58. };
  59. static const int litTypeshift[13] = {
  60. 0, /* TIFF_NOTYPE */
  61. 0, /* TIFF_BYTE */
  62. 0, /* TIFF_ASCII */
  63. 0, /* TIFF_SHORT */
  64. 0, /* TIFF_LONG */
  65. 0, /* TIFF_RATIONAL */
  66. 0, /* TIFF_SBYTE */
  67. 0, /* TIFF_UNDEFINED */
  68. 0, /* TIFF_SSHORT */
  69. 0, /* TIFF_SLONG */
  70. 0, /* TIFF_SRATIONAL */
  71. 0, /* TIFF_FLOAT */
  72. 0, /* TIFF_DOUBLE */
  73. };
  74. /*
  75.  * Dummy functions to fill the omitted client procedures.
  76.  */
  77. static int
  78. _tiffDummyMapProc(thandle_t fd, tdata_t* pbase, toff_t* psize)
  79. {
  80. (void) fd; (void) pbase; (void) psize;
  81. return (0);
  82. }
  83. static void
  84. _tiffDummyUnmapProc(thandle_t fd, tdata_t base, toff_t size)
  85. {
  86. (void) fd; (void) base; (void) size;
  87. }
  88. /*
  89.  * Initialize the shift & mask tables, and the
  90.  * byte swapping state according to the file
  91.  * contents and the machine architecture.
  92.  */
  93. static void
  94. TIFFInitOrder(TIFF* tif, int magic)
  95. {
  96. tif->tif_typemask = typemask;
  97. if (magic == TIFF_BIGENDIAN) {
  98. tif->tif_typeshift = bigTypeshift;
  99. #ifndef WORDS_BIGENDIAN
  100. tif->tif_flags |= TIFF_SWAB;
  101. #endif
  102. } else {
  103. tif->tif_typeshift = litTypeshift;
  104. #ifdef WORDS_BIGENDIAN
  105. tif->tif_flags |= TIFF_SWAB;
  106. #endif
  107. }
  108. }
  109. int
  110. _TIFFgetMode(const char* mode, const char* module)
  111. {
  112. int m = -1;
  113. switch (mode[0]) {
  114. case 'r':
  115. m = O_RDONLY;
  116. if (mode[1] == '+')
  117. m = O_RDWR;
  118. break;
  119. case 'w':
  120. case 'a':
  121. m = O_RDWR|O_CREAT;
  122. if (mode[0] == 'w')
  123. m |= O_TRUNC;
  124. break;
  125. default:
  126. TIFFErrorExt(0, module, ""%s": Bad mode", mode);
  127. break;
  128. }
  129. return (m);
  130. }
  131. TIFF*
  132. TIFFClientOpen(
  133. const char* name, const char* mode,
  134. thandle_t clientdata,
  135. TIFFReadWriteProc readproc,
  136. TIFFReadWriteProc writeproc,
  137. TIFFSeekProc seekproc,
  138. TIFFCloseProc closeproc,
  139. TIFFSizeProc sizeproc,
  140. TIFFMapFileProc mapproc,
  141. TIFFUnmapFileProc unmapproc
  142. )
  143. {
  144. static const char module[] = "TIFFClientOpen";
  145. TIFF *tif;
  146. int m;
  147. const char* cp;
  148. m = _TIFFgetMode(mode, module);
  149. if (m == -1)
  150. goto bad2;
  151. tif = (TIFF *)_TIFFmalloc(sizeof (TIFF) + strlen(name) + 1);
  152. if (tif == NULL) {
  153. TIFFErrorExt(clientdata, module, "%s: Out of memory (TIFF structure)", name);
  154. goto bad2;
  155. }
  156. _TIFFmemset(tif, 0, sizeof (*tif));
  157. tif->tif_name = (char *)tif + sizeof (TIFF);
  158. strcpy(tif->tif_name, name);
  159. tif->tif_mode = m &~ (O_CREAT|O_TRUNC);
  160. tif->tif_curdir = (tdir_t) -1; /* non-existent directory */
  161. tif->tif_curoff = 0;
  162. tif->tif_curstrip = (tstrip_t) -1; /* invalid strip */
  163. tif->tif_row = (uint32) -1; /* read/write pre-increment */
  164. tif->tif_clientdata = clientdata;
  165. if (!readproc || !writeproc || !seekproc || !closeproc || !sizeproc) {
  166. TIFFErrorExt(clientdata, module,
  167.   "One of the client procedures is NULL pointer.");
  168. goto bad2;
  169. }
  170. tif->tif_readproc = readproc;
  171. tif->tif_writeproc = writeproc;
  172. tif->tif_seekproc = seekproc;
  173. tif->tif_closeproc = closeproc;
  174. tif->tif_sizeproc = sizeproc;
  175.         if (mapproc)
  176. tif->tif_mapproc = mapproc;
  177. else
  178. tif->tif_mapproc = _tiffDummyMapProc;
  179. if (unmapproc)
  180. tif->tif_unmapproc = unmapproc;
  181. else
  182. tif->tif_unmapproc = _tiffDummyUnmapProc;
  183. _TIFFSetDefaultCompressionState(tif); /* setup default state */
  184. /*
  185.  * Default is to return data MSB2LSB and enable the
  186.  * use of memory-mapped files and strip chopping when
  187.  * a file is opened read-only.
  188.  */
  189. tif->tif_flags = FILLORDER_MSB2LSB;
  190. if (m == O_RDONLY )
  191.             tif->tif_flags |= TIFF_MAPPED;
  192. #ifdef STRIPCHOP_DEFAULT
  193. if (m == O_RDONLY || m == O_RDWR)
  194. tif->tif_flags |= STRIPCHOP_DEFAULT;
  195. #endif
  196. /*
  197.  * Process library-specific flags in the open mode string.
  198.  * The following flags may be used to control intrinsic library
  199.  * behaviour that may or may not be desirable (usually for
  200.  * compatibility with some application that claims to support
  201.  * TIFF but only supports some braindead idea of what the
  202.  * vendor thinks TIFF is):
  203.  *
  204.  * 'l' use little-endian byte order for creating a file
  205.  * 'b' use big-endian byte order for creating a file
  206.  * 'L' read/write information using LSB2MSB bit order
  207.  * 'B' read/write information using MSB2LSB bit order
  208.  * 'H' read/write information using host bit order
  209.  * 'M' enable use of memory-mapped files when supported
  210.  * 'm' disable use of memory-mapped files
  211.  * 'C' enable strip chopping support when reading
  212.  * 'c' disable strip chopping support
  213.  * 'h' read TIFF header only, do not load the first IFD
  214.  *
  215.  * The use of the 'l' and 'b' flags is strongly discouraged.
  216.  * These flags are provided solely because numerous vendors,
  217.  * typically on the PC, do not correctly support TIFF; they
  218.  * only support the Intel little-endian byte order.  This
  219.  * support is not configured by default because it supports
  220.  * the violation of the TIFF spec that says that readers *MUST*
  221.  * support both byte orders.  It is strongly recommended that
  222.  * you not use this feature except to deal with busted apps
  223.  * that write invalid TIFF.  And even in those cases you should
  224.  * bang on the vendors to fix their software.
  225.  *
  226.  * The 'L', 'B', and 'H' flags are intended for applications
  227.  * that can optimize operations on data by using a particular
  228.  * bit order.  By default the library returns data in MSB2LSB
  229.  * bit order for compatibiltiy with older versions of this
  230.  * library.  Returning data in the bit order of the native cpu
  231.  * makes the most sense but also requires applications to check
  232.  * the value of the FillOrder tag; something they probably do
  233.  * not do right now.
  234.  *
  235.  * The 'M' and 'm' flags are provided because some virtual memory
  236.  * systems exhibit poor behaviour when large images are mapped.
  237.  * These options permit clients to control the use of memory-mapped
  238.  * files on a per-file basis.
  239.  *
  240.  * The 'C' and 'c' flags are provided because the library support
  241.  * for chopping up large strips into multiple smaller strips is not
  242.  * application-transparent and as such can cause problems.  The 'c'
  243.  * option permits applications that only want to look at the tags,
  244.  * for example, to get the unadulterated TIFF tag information.
  245.  */
  246. for (cp = mode; *cp; cp++)
  247. switch (*cp) {
  248. case 'b':
  249. #ifndef WORDS_BIGENDIAN
  250.     if (m&O_CREAT)
  251. tif->tif_flags |= TIFF_SWAB;
  252. #endif
  253. break;
  254. case 'l':
  255. #ifdef WORDS_BIGENDIAN
  256. if ((m&O_CREAT))
  257. tif->tif_flags |= TIFF_SWAB;
  258. #endif
  259. break;
  260. case 'B':
  261. tif->tif_flags = (tif->tif_flags &~ TIFF_FILLORDER) |
  262.     FILLORDER_MSB2LSB;
  263. break;
  264. case 'L':
  265. tif->tif_flags = (tif->tif_flags &~ TIFF_FILLORDER) |
  266.     FILLORDER_LSB2MSB;
  267. break;
  268. case 'H':
  269. tif->tif_flags = (tif->tif_flags &~ TIFF_FILLORDER) |
  270.     HOST_FILLORDER;
  271. break;
  272. case 'M':
  273. if (m == O_RDONLY)
  274. tif->tif_flags |= TIFF_MAPPED;
  275. break;
  276. case 'm':
  277. if (m == O_RDONLY)
  278. tif->tif_flags &= ~TIFF_MAPPED;
  279. break;
  280. case 'C':
  281. if (m == O_RDONLY)
  282. tif->tif_flags |= TIFF_STRIPCHOP;
  283. break;
  284. case 'c':
  285. if (m == O_RDONLY)
  286. tif->tif_flags &= ~TIFF_STRIPCHOP;
  287. break;
  288. case 'h':
  289. tif->tif_flags |= TIFF_HEADERONLY;
  290. break;
  291. }
  292. /*
  293.  * Read in TIFF header.
  294.  */
  295. if (tif->tif_mode & O_TRUNC ||
  296.     !ReadOK(tif, &tif->tif_header, sizeof (TIFFHeader))) {
  297. if (tif->tif_mode == O_RDONLY) {
  298. TIFFErrorExt(tif->tif_clientdata, name, "Cannot read TIFF header");
  299. goto bad;
  300. }
  301. /*
  302.  * Setup header and write.
  303.  */
  304. #ifdef WORDS_BIGENDIAN
  305. tif->tif_header.tiff_magic = tif->tif_flags & TIFF_SWAB
  306.     ? TIFF_LITTLEENDIAN : TIFF_BIGENDIAN;
  307. #else
  308. tif->tif_header.tiff_magic = tif->tif_flags & TIFF_SWAB
  309.     ? TIFF_BIGENDIAN : TIFF_LITTLEENDIAN;
  310. #endif
  311. tif->tif_header.tiff_version = TIFF_VERSION;
  312. if (tif->tif_flags & TIFF_SWAB)
  313. TIFFSwabShort(&tif->tif_header.tiff_version);
  314. tif->tif_header.tiff_diroff = 0; /* filled in later */
  315.                 /*
  316.                  * The doc for "fopen" for some STD_C_LIBs says that if you 
  317.                  * open a file for modify ("+"), then you must fseek (or 
  318.                  * fflush?) between any freads and fwrites.  This is not
  319.                  * necessary on most systems, but has been shown to be needed
  320.                  * on Solaris. 
  321.                  */
  322.                 TIFFSeekFile( tif, 0, SEEK_SET );
  323.                
  324. if (!WriteOK(tif, &tif->tif_header, sizeof (TIFFHeader))) {
  325. TIFFErrorExt(tif->tif_clientdata, name, "Error writing TIFF header");
  326. goto bad;
  327. }
  328. /*
  329.  * Setup the byte order handling.
  330.  */
  331. TIFFInitOrder(tif, tif->tif_header.tiff_magic);
  332. /*
  333.  * Setup default directory.
  334.  */
  335. if (!TIFFDefaultDirectory(tif))
  336. goto bad;
  337. tif->tif_diroff = 0;
  338. tif->tif_dirlist = NULL;
  339. tif->tif_dirnumber = 0;
  340. return (tif);
  341. }
  342. /*
  343.  * Setup the byte order handling.
  344.  */
  345. if (tif->tif_header.tiff_magic != TIFF_BIGENDIAN &&
  346.     tif->tif_header.tiff_magic != TIFF_LITTLEENDIAN
  347. #if MDI_SUPPORT
  348.     &&
  349. #if HOST_BIGENDIAN
  350.     tif->tif_header.tiff_magic != MDI_BIGENDIAN
  351. #else
  352.     tif->tif_header.tiff_magic != MDI_LITTLEENDIAN
  353. #endif
  354.     ) {
  355. TIFFErrorExt(tif->tif_clientdata, name,  "Not a TIFF or MDI file, bad magic number %d (0x%x)",
  356. #else
  357.     ) {
  358. TIFFErrorExt(tif->tif_clientdata, name,  "Not a TIFF file, bad magic number %d (0x%x)",
  359. #endif
  360.     tif->tif_header.tiff_magic,
  361.     tif->tif_header.tiff_magic);
  362. goto bad;
  363. }
  364. TIFFInitOrder(tif, tif->tif_header.tiff_magic);
  365. /*
  366.  * Swap header if required.
  367.  */
  368. if (tif->tif_flags & TIFF_SWAB) {
  369. TIFFSwabShort(&tif->tif_header.tiff_version);
  370. TIFFSwabLong(&tif->tif_header.tiff_diroff);
  371. }
  372. /*
  373.  * Now check version (if needed, it's been byte-swapped).
  374.  * Note that this isn't actually a version number, it's a
  375.  * magic number that doesn't change (stupid).
  376.  */
  377. if (tif->tif_header.tiff_version == TIFF_BIGTIFF_VERSION) {
  378. TIFFErrorExt(tif->tif_clientdata, name,
  379.                           "This is a BigTIFF file.  This format not supportedn"
  380.                           "by this version of libtiff." );
  381. goto bad;
  382. }
  383. if (tif->tif_header.tiff_version != TIFF_VERSION) {
  384. TIFFErrorExt(tif->tif_clientdata, name,
  385.     "Not a TIFF file, bad version number %d (0x%x)",
  386.     tif->tif_header.tiff_version,
  387.     tif->tif_header.tiff_version); 
  388. goto bad;
  389. }
  390. tif->tif_flags |= TIFF_MYBUFFER;
  391. tif->tif_rawcp = tif->tif_rawdata = 0;
  392. tif->tif_rawdatasize = 0;
  393. /*
  394.  * Sometimes we do not want to read the first directory (for example,
  395.  * it may be broken) and want to proceed to other directories. I this
  396.  * case we use the TIFF_HEADERONLY flag to open file and return
  397.  * immediately after reading TIFF header.
  398.  */
  399. if (tif->tif_flags & TIFF_HEADERONLY)
  400. return (tif);
  401. /*
  402.  * Setup initial directory.
  403.  */
  404. switch (mode[0]) {
  405. case 'r':
  406. tif->tif_nextdiroff = tif->tif_header.tiff_diroff;
  407. /*
  408.  * Try to use a memory-mapped file if the client
  409.  * has not explicitly suppressed usage with the
  410.  * 'm' flag in the open mode (see above).
  411.  */
  412. if ((tif->tif_flags & TIFF_MAPPED) &&
  413. !TIFFMapFileContents(tif, (tdata_t*) &tif->tif_base, &tif->tif_size))
  414. tif->tif_flags &= ~TIFF_MAPPED;
  415. if (TIFFReadDirectory(tif)) {
  416. tif->tif_rawcc = -1;
  417. tif->tif_flags |= TIFF_BUFFERSETUP;
  418. return (tif);
  419. }
  420. break;
  421. case 'a':
  422. /*
  423.  * New directories are automatically append
  424.  * to the end of the directory chain when they
  425.  * are written out (see TIFFWriteDirectory).
  426.  */
  427. if (!TIFFDefaultDirectory(tif))
  428. goto bad;
  429. return (tif);
  430. }
  431. bad:
  432. tif->tif_mode = O_RDONLY; /* XXX avoid flush */
  433.         TIFFCleanup(tif);
  434. bad2:
  435. return ((TIFF*)0);
  436. }
  437. /*
  438.  * Query functions to access private data.
  439.  */
  440. /*
  441.  * Return open file's name.
  442.  */
  443. const char *
  444. TIFFFileName(TIFF* tif)
  445. {
  446. return (tif->tif_name);
  447. }
  448. /*
  449.  * Set the file name.
  450.  */
  451. const char *
  452. TIFFSetFileName(TIFF* tif, const char *name)
  453. {
  454. const char* old_name = tif->tif_name;
  455. tif->tif_name = (char *)name;
  456. return (old_name);
  457. }
  458. /*
  459.  * Return open file's I/O descriptor.
  460.  */
  461. int
  462. TIFFFileno(TIFF* tif)
  463. {
  464. return (tif->tif_fd);
  465. }
  466. /*
  467.  * Set open file's I/O descriptor, and return previous value.
  468.  */
  469. int
  470. TIFFSetFileno(TIFF* tif, int fd)
  471. {
  472.         int old_fd = tif->tif_fd;
  473. tif->tif_fd = fd;
  474. return old_fd;
  475. }
  476. /*
  477.  * Return open file's clientdata.
  478.  */
  479. thandle_t
  480. TIFFClientdata(TIFF* tif)
  481. {
  482. return (tif->tif_clientdata);
  483. }
  484. /*
  485.  * Set open file's clientdata, and return previous value.
  486.  */
  487. thandle_t
  488. TIFFSetClientdata(TIFF* tif, thandle_t newvalue)
  489. {
  490. thandle_t m = tif->tif_clientdata;
  491. tif->tif_clientdata = newvalue;
  492. return m;
  493. }
  494. /*
  495.  * Return read/write mode.
  496.  */
  497. int
  498. TIFFGetMode(TIFF* tif)
  499. {
  500. return (tif->tif_mode);
  501. }
  502. /*
  503.  * Return read/write mode.
  504.  */
  505. int
  506. TIFFSetMode(TIFF* tif, int mode)
  507. {
  508. int old_mode = tif->tif_mode;
  509. tif->tif_mode = mode;
  510. return (old_mode);
  511. }
  512. /*
  513.  * Return nonzero if file is organized in
  514.  * tiles; zero if organized as strips.
  515.  */
  516. int
  517. TIFFIsTiled(TIFF* tif)
  518. {
  519. return (isTiled(tif));
  520. }
  521. /*
  522.  * Return current row being read/written.
  523.  */
  524. uint32
  525. TIFFCurrentRow(TIFF* tif)
  526. {
  527. return (tif->tif_row);
  528. }
  529. /*
  530.  * Return index of the current directory.
  531.  */
  532. tdir_t
  533. TIFFCurrentDirectory(TIFF* tif)
  534. {
  535. return (tif->tif_curdir);
  536. }
  537. /*
  538.  * Return current strip.
  539.  */
  540. tstrip_t
  541. TIFFCurrentStrip(TIFF* tif)
  542. {
  543. return (tif->tif_curstrip);
  544. }
  545. /*
  546.  * Return current tile.
  547.  */
  548. ttile_t
  549. TIFFCurrentTile(TIFF* tif)
  550. {
  551. return (tif->tif_curtile);
  552. }
  553. /*
  554.  * Return nonzero if the file has byte-swapped data.
  555.  */
  556. int
  557. TIFFIsByteSwapped(TIFF* tif)
  558. {
  559. return ((tif->tif_flags & TIFF_SWAB) != 0);
  560. }
  561. /*
  562.  * Return nonzero if the data is returned up-sampled.
  563.  */
  564. int
  565. TIFFIsUpSampled(TIFF* tif)
  566. {
  567. return (isUpSampled(tif));
  568. }
  569. /*
  570.  * Return nonzero if the data is returned in MSB-to-LSB bit order.
  571.  */
  572. int
  573. TIFFIsMSB2LSB(TIFF* tif)
  574. {
  575. return (isFillOrder(tif, FILLORDER_MSB2LSB));
  576. }
  577. /*
  578.  * Return nonzero if given file was written in big-endian order.
  579.  */
  580. int
  581. TIFFIsBigEndian(TIFF* tif)
  582. {
  583. return (tif->tif_header.tiff_magic == TIFF_BIGENDIAN);
  584. }
  585. /*
  586.  * Return pointer to file read method.
  587.  */
  588. TIFFReadWriteProc
  589. TIFFGetReadProc(TIFF* tif)
  590. {
  591. return (tif->tif_readproc);
  592. }
  593. /*
  594.  * Return pointer to file write method.
  595.  */
  596. TIFFReadWriteProc
  597. TIFFGetWriteProc(TIFF* tif)
  598. {
  599. return (tif->tif_writeproc);
  600. }
  601. /*
  602.  * Return pointer to file seek method.
  603.  */
  604. TIFFSeekProc
  605. TIFFGetSeekProc(TIFF* tif)
  606. {
  607. return (tif->tif_seekproc);
  608. }
  609. /*
  610.  * Return pointer to file close method.
  611.  */
  612. TIFFCloseProc
  613. TIFFGetCloseProc(TIFF* tif)
  614. {
  615. return (tif->tif_closeproc);
  616. }
  617. /*
  618.  * Return pointer to file size requesting method.
  619.  */
  620. TIFFSizeProc
  621. TIFFGetSizeProc(TIFF* tif)
  622. {
  623. return (tif->tif_sizeproc);
  624. }
  625. /*
  626.  * Return pointer to memory mapping method.
  627.  */
  628. TIFFMapFileProc
  629. TIFFGetMapFileProc(TIFF* tif)
  630. {
  631. return (tif->tif_mapproc);
  632. }
  633. /*
  634.  * Return pointer to memory unmapping method.
  635.  */
  636. TIFFUnmapFileProc
  637. TIFFGetUnmapFileProc(TIFF* tif)
  638. {
  639. return (tif->tif_unmapproc);
  640. }
  641. /* vim: set ts=8 sts=8 sw=8 noet: */