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

打印编程

开发平台:

Visual C++

  1. /* $Id: tif_read.c,v 1.13 2005/12/21 12:23:13 joris 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.  * Scanline-oriented Read Support
  28.  */
  29. #include "tiffiop.h"
  30. #include <stdio.h>
  31. int TIFFFillStrip(TIFF*, tstrip_t);
  32. int TIFFFillTile(TIFF*, ttile_t);
  33. static int TIFFStartStrip(TIFF*, tstrip_t);
  34. static int TIFFStartTile(TIFF*, ttile_t);
  35. static int TIFFCheckRead(TIFF*, int);
  36. #define NOSTRIP ((tstrip_t) -1) /* undefined state */
  37. #define NOTILE ((ttile_t) -1) /* undefined state */
  38. /*
  39.  * Seek to a random row+sample in a file.
  40.  */
  41. static int
  42. TIFFSeek(TIFF* tif, uint32 row, tsample_t sample)
  43. {
  44. register TIFFDirectory *td = &tif->tif_dir;
  45. tstrip_t strip;
  46. if (row >= td->td_imagelength) { /* out of range */
  47. TIFFErrorExt(tif->tif_clientdata, tif->tif_name, "%lu: Row out of range, max %lu",
  48.     (unsigned long) row, (unsigned long) td->td_imagelength);
  49. return (0);
  50. }
  51. if (td->td_planarconfig == PLANARCONFIG_SEPARATE) {
  52. if (sample >= td->td_samplesperpixel) {
  53. TIFFErrorExt(tif->tif_clientdata, tif->tif_name,
  54.     "%lu: Sample out of range, max %lu",
  55.     (unsigned long) sample, (unsigned long) td->td_samplesperpixel);
  56. return (0);
  57. }
  58. strip = sample*td->td_stripsperimage + row/td->td_rowsperstrip;
  59. } else
  60. strip = row / td->td_rowsperstrip;
  61. if (strip != tif->tif_curstrip) {  /* different strip, refill */
  62. if (!TIFFFillStrip(tif, strip))
  63. return (0);
  64. } else if (row < tif->tif_row) {
  65. /*
  66.  * Moving backwards within the same strip: backup
  67.  * to the start and then decode forward (below).
  68.  *
  69.  * NB: If you're planning on lots of random access within a
  70.  * strip, it's better to just read and decode the entire
  71.  * strip, and then access the decoded data in a random fashion.
  72.  */
  73. if (!TIFFStartStrip(tif, strip))
  74. return (0);
  75. }
  76. if (row != tif->tif_row) {
  77. /*
  78.  * Seek forward to the desired row.
  79.  */
  80. if (!(*tif->tif_seek)(tif, row - tif->tif_row))
  81. return (0);
  82. tif->tif_row = row;
  83. }
  84. return (1);
  85. }
  86. int
  87. TIFFReadScanline(TIFF* tif, tdata_t buf, uint32 row, tsample_t sample)
  88. {
  89. int e;
  90. if (!TIFFCheckRead(tif, 0))
  91. return (-1);
  92. if( (e = TIFFSeek(tif, row, sample)) != 0) {
  93. /*
  94.  * Decompress desired row into user buffer.
  95.  */
  96. e = (*tif->tif_decoderow)
  97.     (tif, (tidata_t) buf, tif->tif_scanlinesize, sample);
  98.                 /* we are now poised at the beginning of the next row */
  99.                 tif->tif_row = row + 1;
  100. if (e)
  101. (*tif->tif_postdecode)(tif, (tidata_t) buf,
  102.     tif->tif_scanlinesize);
  103. }
  104. return (e > 0 ? 1 : -1);
  105. }
  106. /*
  107.  * Read a strip of data and decompress the specified
  108.  * amount into the user-supplied buffer.
  109.  */
  110. tsize_t
  111. TIFFReadEncodedStrip(TIFF* tif, tstrip_t strip, tdata_t buf, tsize_t size)
  112. {
  113. TIFFDirectory *td = &tif->tif_dir;
  114. uint32 nrows;
  115. tsize_t stripsize;
  116.         tstrip_t sep_strip, strips_per_sep;
  117. if (!TIFFCheckRead(tif, 0))
  118. return (-1);
  119. if (strip >= td->td_nstrips) {
  120. TIFFErrorExt(tif->tif_clientdata, tif->tif_name, "%ld: Strip out of range, max %ld",
  121.     (long) strip, (long) td->td_nstrips);
  122. return (-1);
  123. }
  124. /*
  125.  * Calculate the strip size according to the number of
  126.  * rows in the strip (check for truncated last strip on any
  127.          * of the separations).
  128.  */
  129.         if( td->td_rowsperstrip >= td->td_imagelength )
  130.             strips_per_sep = 1;
  131.         else
  132.             strips_per_sep = (td->td_imagelength+td->td_rowsperstrip-1)
  133.                 / td->td_rowsperstrip;
  134.         sep_strip = strip % strips_per_sep;
  135. if (sep_strip != strips_per_sep-1 ||
  136.     (nrows = td->td_imagelength % td->td_rowsperstrip) == 0)
  137. nrows = td->td_rowsperstrip;
  138. stripsize = TIFFVStripSize(tif, nrows);
  139. if (size == (tsize_t) -1)
  140. size = stripsize;
  141. else if (size > stripsize)
  142. size = stripsize;
  143. if (TIFFFillStrip(tif, strip) 
  144.             && (*tif->tif_decodestrip)(tif, (tidata_t) buf, size, 
  145.                          (tsample_t)(strip / td->td_stripsperimage)) > 0 ) {
  146. (*tif->tif_postdecode)(tif, (tidata_t) buf, size);
  147. return (size);
  148. } else
  149. return ((tsize_t) -1);
  150. }
  151. static tsize_t
  152. TIFFReadRawStrip1(TIFF* tif,
  153.     tstrip_t strip, tdata_t buf, tsize_t size, const char* module)
  154. {
  155. TIFFDirectory *td = &tif->tif_dir;
  156. if (!isMapped(tif)) {
  157. tsize_t cc;
  158. if (!SeekOK(tif, td->td_stripoffset[strip])) {
  159. TIFFErrorExt(tif->tif_clientdata, module,
  160.     "%s: Seek error at scanline %lu, strip %lu",
  161.     tif->tif_name,
  162.     (unsigned long) tif->tif_row, (unsigned long) strip);
  163. return (-1);
  164. }
  165. cc = TIFFReadFile(tif, buf, size);
  166. if (cc != size) {
  167. TIFFErrorExt(tif->tif_clientdata, module,
  168. "%s: Read error at scanline %lu; got %lu bytes, expected %lu",
  169.     tif->tif_name,
  170.     (unsigned long) tif->tif_row,
  171.     (unsigned long) cc,
  172.     (unsigned long) size);
  173. return (-1);
  174. }
  175. } else {
  176. if (td->td_stripoffset[strip] + size > tif->tif_size) {
  177. TIFFErrorExt(tif->tif_clientdata, module,
  178.     "%s: Read error at scanline %lu, strip %lu; got %lu bytes, expected %lu",
  179.     tif->tif_name,
  180.     (unsigned long) tif->tif_row,
  181.     (unsigned long) strip,
  182.     (unsigned long) tif->tif_size - td->td_stripoffset[strip],
  183.     (unsigned long) size);
  184. return (-1);
  185. }
  186. _TIFFmemcpy(buf, tif->tif_base + td->td_stripoffset[strip],
  187.                             size);
  188. }
  189. return (size);
  190. }
  191. /*
  192.  * Read a strip of data from the file.
  193.  */
  194. tsize_t
  195. TIFFReadRawStrip(TIFF* tif, tstrip_t strip, tdata_t buf, tsize_t size)
  196. {
  197. static const char module[] = "TIFFReadRawStrip";
  198. TIFFDirectory *td = &tif->tif_dir;
  199. tsize_t bytecount;
  200. if (!TIFFCheckRead(tif, 0))
  201. return ((tsize_t) -1);
  202. if (strip >= td->td_nstrips) {
  203. TIFFErrorExt(tif->tif_clientdata, tif->tif_name, "%lu: Strip out of range, max %lu",
  204.     (unsigned long) strip, (unsigned long) td->td_nstrips);
  205. return ((tsize_t) -1);
  206. }
  207. bytecount = td->td_stripbytecount[strip];
  208. if (bytecount <= 0) {
  209. TIFFErrorExt(tif->tif_clientdata, tif->tif_name,
  210.     "%lu: Invalid strip byte count, strip %lu",
  211.     (unsigned long) bytecount, (unsigned long) strip);
  212. return ((tsize_t) -1);
  213. }
  214. if (size != (tsize_t)-1 && size < bytecount)
  215. bytecount = size;
  216. return (TIFFReadRawStrip1(tif, strip, buf, bytecount, module));
  217. }
  218. /*
  219.  * Read the specified strip and setup for decoding. 
  220.  * The data buffer is expanded, as necessary, to
  221.  * hold the strip's data.
  222.  */
  223. int
  224. TIFFFillStrip(TIFF* tif, tstrip_t strip)
  225. {
  226. static const char module[] = "TIFFFillStrip";
  227. TIFFDirectory *td = &tif->tif_dir;
  228. tsize_t bytecount;
  229. bytecount = td->td_stripbytecount[strip];
  230. if (bytecount <= 0) {
  231. TIFFErrorExt(tif->tif_clientdata, tif->tif_name,
  232.     "%lu: Invalid strip byte count, strip %lu",
  233.     (unsigned long) bytecount, (unsigned long) strip);
  234. return (0);
  235. }
  236. if (isMapped(tif) &&
  237.     (isFillOrder(tif, td->td_fillorder)
  238.              || (tif->tif_flags & TIFF_NOBITREV))) {
  239. /*
  240.  * The image is mapped into memory and we either don't
  241.  * need to flip bits or the compression routine is going
  242.  * to handle this operation itself.  In this case, avoid
  243.  * copying the raw data and instead just reference the
  244.  * data from the memory mapped file image.  This assumes
  245.  * that the decompression routines do not modify the
  246.  * contents of the raw data buffer (if they try to,
  247.  * the application will get a fault since the file is
  248.  * mapped read-only).
  249.  */
  250. if ((tif->tif_flags & TIFF_MYBUFFER) && tif->tif_rawdata)
  251. _TIFFfree(tif->tif_rawdata);
  252. tif->tif_flags &= ~TIFF_MYBUFFER;
  253. if ( td->td_stripoffset[strip] + bytecount > tif->tif_size) {
  254. /*
  255.  * This error message might seem strange, but it's
  256.  * what would happen if a read were done instead.
  257.  */
  258. TIFFErrorExt(tif->tif_clientdata, module,
  259.     "%s: Read error on strip %lu; got %lu bytes, expected %lu",
  260.     tif->tif_name,
  261.     (unsigned long) strip,
  262.     (unsigned long) tif->tif_size - td->td_stripoffset[strip],
  263.     (unsigned long) bytecount);
  264. tif->tif_curstrip = NOSTRIP;
  265. return (0);
  266. }
  267. tif->tif_rawdatasize = bytecount;
  268. tif->tif_rawdata = tif->tif_base + td->td_stripoffset[strip];
  269. } else {
  270. /*
  271.  * Expand raw data buffer, if needed, to
  272.  * hold data strip coming from file
  273.  * (perhaps should set upper bound on
  274.  *  the size of a buffer we'll use?).
  275.  */
  276. if (bytecount > tif->tif_rawdatasize) {
  277. tif->tif_curstrip = NOSTRIP;
  278. if ((tif->tif_flags & TIFF_MYBUFFER) == 0) {
  279. TIFFErrorExt(tif->tif_clientdata, module,
  280. "%s: Data buffer too small to hold strip %lu",
  281.     tif->tif_name, (unsigned long) strip);
  282. return (0);
  283. }
  284. if (!TIFFReadBufferSetup(tif, 0,
  285.     TIFFroundup(bytecount, 1024)))
  286. return (0);
  287. }
  288. if (TIFFReadRawStrip1(tif, strip, (unsigned char *)tif->tif_rawdata,
  289.     bytecount, module) != bytecount)
  290. return (0);
  291. if (!isFillOrder(tif, td->td_fillorder) &&
  292.     (tif->tif_flags & TIFF_NOBITREV) == 0)
  293. TIFFReverseBits(tif->tif_rawdata, bytecount);
  294. }
  295. return (TIFFStartStrip(tif, strip));
  296. }
  297. /*
  298.  * Tile-oriented Read Support
  299.  * Contributed by Nancy Cam (Silicon Graphics).
  300.  */
  301. /*
  302.  * Read and decompress a tile of data.  The
  303.  * tile is selected by the (x,y,z,s) coordinates.
  304.  */
  305. tsize_t
  306. TIFFReadTile(TIFF* tif,
  307.     tdata_t buf, uint32 x, uint32 y, uint32 z, tsample_t s)
  308. {
  309. if (!TIFFCheckRead(tif, 1) || !TIFFCheckTile(tif, x, y, z, s))
  310. return (-1);
  311. return (TIFFReadEncodedTile(tif,
  312.     TIFFComputeTile(tif, x, y, z, s), buf, (tsize_t) -1));
  313. }
  314. /*
  315.  * Read a tile of data and decompress the specified
  316.  * amount into the user-supplied buffer.
  317.  */
  318. tsize_t
  319. TIFFReadEncodedTile(TIFF* tif, ttile_t tile, tdata_t buf, tsize_t size)
  320. {
  321. TIFFDirectory *td = &tif->tif_dir;
  322. tsize_t tilesize = tif->tif_tilesize;
  323. if (!TIFFCheckRead(tif, 1))
  324. return (-1);
  325. if (tile >= td->td_nstrips) {
  326. TIFFErrorExt(tif->tif_clientdata, tif->tif_name, "%ld: Tile out of range, max %ld",
  327.     (long) tile, (unsigned long) td->td_nstrips);
  328. return (-1);
  329. }
  330. if (size == (tsize_t) -1)
  331. size = tilesize;
  332. else if (size > tilesize)
  333. size = tilesize;
  334. if (TIFFFillTile(tif, tile) && (*tif->tif_decodetile)(tif,
  335.     (tidata_t) buf, size, (tsample_t)(tile/td->td_stripsperimage))) {
  336. (*tif->tif_postdecode)(tif, (tidata_t) buf, size);
  337. return (size);
  338. } else
  339. return (-1);
  340. }
  341. static tsize_t
  342. TIFFReadRawTile1(TIFF* tif,
  343.     ttile_t tile, tdata_t buf, tsize_t size, const char* module)
  344. {
  345. TIFFDirectory *td = &tif->tif_dir;
  346. if (!isMapped(tif)) {
  347. tsize_t cc;
  348. if (!SeekOK(tif, td->td_stripoffset[tile])) {
  349. TIFFErrorExt(tif->tif_clientdata, module,
  350.     "%s: Seek error at row %ld, col %ld, tile %ld",
  351.     tif->tif_name,
  352.     (long) tif->tif_row,
  353.     (long) tif->tif_col,
  354.     (long) tile);
  355. return ((tsize_t) -1);
  356. }
  357. cc = TIFFReadFile(tif, buf, size);
  358. if (cc != size) {
  359. TIFFErrorExt(tif->tif_clientdata, module,
  360.     "%s: Read error at row %ld, col %ld; got %lu bytes, expected %lu",
  361.     tif->tif_name,
  362.     (long) tif->tif_row,
  363.     (long) tif->tif_col,
  364.     (unsigned long) cc,
  365.     (unsigned long) size);
  366. return ((tsize_t) -1);
  367. }
  368. } else {
  369. if (td->td_stripoffset[tile] + size > tif->tif_size) {
  370. TIFFErrorExt(tif->tif_clientdata, module,
  371.     "%s: Read error at row %ld, col %ld, tile %ld; got %lu bytes, expected %lu",
  372.     tif->tif_name,
  373.     (long) tif->tif_row,
  374.     (long) tif->tif_col,
  375.     (long) tile,
  376.     (unsigned long) tif->tif_size - td->td_stripoffset[tile],
  377.     (unsigned long) size);
  378. return ((tsize_t) -1);
  379. }
  380. _TIFFmemcpy(buf, tif->tif_base + td->td_stripoffset[tile], size);
  381. }
  382. return (size);
  383. }
  384. /*
  385.  * Read a tile of data from the file.
  386.  */
  387. tsize_t
  388. TIFFReadRawTile(TIFF* tif, ttile_t tile, tdata_t buf, tsize_t size)
  389. {
  390. static const char module[] = "TIFFReadRawTile";
  391. TIFFDirectory *td = &tif->tif_dir;
  392. tsize_t bytecount;
  393. if (!TIFFCheckRead(tif, 1))
  394. return ((tsize_t) -1);
  395. if (tile >= td->td_nstrips) {
  396. TIFFErrorExt(tif->tif_clientdata, tif->tif_name, "%lu: Tile out of range, max %lu",
  397.     (unsigned long) tile, (unsigned long) td->td_nstrips);
  398. return ((tsize_t) -1);
  399. }
  400. bytecount = td->td_stripbytecount[tile];
  401. if (size != (tsize_t) -1 && size < bytecount)
  402. bytecount = size;
  403. return (TIFFReadRawTile1(tif, tile, buf, bytecount, module));
  404. }
  405. /*
  406.  * Read the specified tile and setup for decoding. 
  407.  * The data buffer is expanded, as necessary, to
  408.  * hold the tile's data.
  409.  */
  410. int
  411. TIFFFillTile(TIFF* tif, ttile_t tile)
  412. {
  413. static const char module[] = "TIFFFillTile";
  414. TIFFDirectory *td = &tif->tif_dir;
  415. tsize_t bytecount;
  416. bytecount = td->td_stripbytecount[tile];
  417. if (bytecount <= 0) {
  418. TIFFErrorExt(tif->tif_clientdata, tif->tif_name,
  419.     "%lu: Invalid tile byte count, tile %lu",
  420.     (unsigned long) bytecount, (unsigned long) tile);
  421. return (0);
  422. }
  423. if (isMapped(tif) &&
  424.     (isFillOrder(tif, td->td_fillorder)
  425.              || (tif->tif_flags & TIFF_NOBITREV))) {
  426. /*
  427.  * The image is mapped into memory and we either don't
  428.  * need to flip bits or the compression routine is going
  429.  * to handle this operation itself.  In this case, avoid
  430.  * copying the raw data and instead just reference the
  431.  * data from the memory mapped file image.  This assumes
  432.  * that the decompression routines do not modify the
  433.  * contents of the raw data buffer (if they try to,
  434.  * the application will get a fault since the file is
  435.  * mapped read-only).
  436.  */
  437. if ((tif->tif_flags & TIFF_MYBUFFER) && tif->tif_rawdata)
  438. _TIFFfree(tif->tif_rawdata);
  439. tif->tif_flags &= ~TIFF_MYBUFFER;
  440. if ( td->td_stripoffset[tile] + bytecount > tif->tif_size) {
  441. tif->tif_curtile = NOTILE;
  442. return (0);
  443. }
  444. tif->tif_rawdatasize = bytecount;
  445. tif->tif_rawdata = tif->tif_base + td->td_stripoffset[tile];
  446. } else {
  447. /*
  448.  * Expand raw data buffer, if needed, to
  449.  * hold data tile coming from file
  450.  * (perhaps should set upper bound on
  451.  *  the size of a buffer we'll use?).
  452.  */
  453. if (bytecount > tif->tif_rawdatasize) {
  454. tif->tif_curtile = NOTILE;
  455. if ((tif->tif_flags & TIFF_MYBUFFER) == 0) {
  456. TIFFErrorExt(tif->tif_clientdata, module,
  457. "%s: Data buffer too small to hold tile %ld",
  458.     tif->tif_name, (long) tile);
  459. return (0);
  460. }
  461. if (!TIFFReadBufferSetup(tif, 0,
  462.     TIFFroundup(bytecount, 1024)))
  463. return (0);
  464. }
  465. if (TIFFReadRawTile1(tif, tile,
  466.                                      (unsigned char *)tif->tif_rawdata,
  467.                                      bytecount, module) != bytecount)
  468. return (0);
  469. if (!isFillOrder(tif, td->td_fillorder) &&
  470.     (tif->tif_flags & TIFF_NOBITREV) == 0)
  471. TIFFReverseBits(tif->tif_rawdata, bytecount);
  472. }
  473. return (TIFFStartTile(tif, tile));
  474. }
  475. /*
  476.  * Setup the raw data buffer in preparation for
  477.  * reading a strip of raw data.  If the buffer
  478.  * is specified as zero, then a buffer of appropriate
  479.  * size is allocated by the library.  Otherwise,
  480.  * the client must guarantee that the buffer is
  481.  * large enough to hold any individual strip of
  482.  * raw data.
  483.  */
  484. int
  485. TIFFReadBufferSetup(TIFF* tif, tdata_t bp, tsize_t size)
  486. {
  487. static const char module[] = "TIFFReadBufferSetup";
  488. if (tif->tif_rawdata) {
  489. if (tif->tif_flags & TIFF_MYBUFFER)
  490. _TIFFfree(tif->tif_rawdata);
  491. tif->tif_rawdata = NULL;
  492. }
  493. if (bp) {
  494. tif->tif_rawdatasize = size;
  495. tif->tif_rawdata = (tidata_t) bp;
  496. tif->tif_flags &= ~TIFF_MYBUFFER;
  497. } else {
  498. tif->tif_rawdatasize = TIFFroundup(size, 1024);
  499. tif->tif_rawdata = (tidata_t) _TIFFmalloc(tif->tif_rawdatasize);
  500. tif->tif_flags |= TIFF_MYBUFFER;
  501. }
  502. if (tif->tif_rawdata == NULL) {
  503. TIFFErrorExt(tif->tif_clientdata, module,
  504.     "%s: No space for data buffer at scanline %ld",
  505.     tif->tif_name, (long) tif->tif_row);
  506. tif->tif_rawdatasize = 0;
  507. return (0);
  508. }
  509. return (1);
  510. }
  511. /*
  512.  * Set state to appear as if a
  513.  * strip has just been read in.
  514.  */
  515. static int
  516. TIFFStartStrip(TIFF* tif, tstrip_t strip)
  517. {
  518. TIFFDirectory *td = &tif->tif_dir;
  519. if ((tif->tif_flags & TIFF_CODERSETUP) == 0) {
  520. if (!(*tif->tif_setupdecode)(tif))
  521. return (0);
  522. tif->tif_flags |= TIFF_CODERSETUP;
  523. }
  524. tif->tif_curstrip = strip;
  525. tif->tif_row = (strip % td->td_stripsperimage) * td->td_rowsperstrip;
  526. tif->tif_rawcp = tif->tif_rawdata;
  527. tif->tif_rawcc = td->td_stripbytecount[strip];
  528. return ((*tif->tif_predecode)(tif,
  529. (tsample_t)(strip / td->td_stripsperimage)));
  530. }
  531. /*
  532.  * Set state to appear as if a
  533.  * tile has just been read in.
  534.  */
  535. static int
  536. TIFFStartTile(TIFF* tif, ttile_t tile)
  537. {
  538. TIFFDirectory *td = &tif->tif_dir;
  539. if ((tif->tif_flags & TIFF_CODERSETUP) == 0) {
  540. if (!(*tif->tif_setupdecode)(tif))
  541. return (0);
  542. tif->tif_flags |= TIFF_CODERSETUP;
  543. }
  544. tif->tif_curtile = tile;
  545. tif->tif_row =
  546.     (tile % TIFFhowmany(td->td_imagewidth, td->td_tilewidth)) *
  547. td->td_tilelength;
  548. tif->tif_col =
  549.     (tile % TIFFhowmany(td->td_imagelength, td->td_tilelength)) *
  550. td->td_tilewidth;
  551. tif->tif_rawcp = tif->tif_rawdata;
  552. tif->tif_rawcc = td->td_stripbytecount[tile];
  553. return ((*tif->tif_predecode)(tif,
  554. (tsample_t)(tile/td->td_stripsperimage)));
  555. }
  556. static int
  557. TIFFCheckRead(TIFF* tif, int tiles)
  558. {
  559. if (tif->tif_mode == O_WRONLY) {
  560. TIFFErrorExt(tif->tif_clientdata, tif->tif_name, "File not open for reading");
  561. return (0);
  562. }
  563. if (tiles ^ isTiled(tif)) {
  564. TIFFErrorExt(tif->tif_clientdata, tif->tif_name, tiles ?
  565.     "Can not read tiles from a stripped image" :
  566.     "Can not read scanlines from a tiled image");
  567. return (0);
  568. }
  569. return (1);
  570. }
  571. void
  572. _TIFFNoPostDecode(TIFF* tif, tidata_t buf, tsize_t cc)
  573. {
  574.     (void) tif; (void) buf; (void) cc;
  575. }
  576. void
  577. _TIFFSwab16BitData(TIFF* tif, tidata_t buf, tsize_t cc)
  578. {
  579.     (void) tif;
  580.     assert((cc & 1) == 0);
  581.     TIFFSwabArrayOfShort((uint16*) buf, cc/2);
  582. }
  583. void
  584. _TIFFSwab24BitData(TIFF* tif, tidata_t buf, tsize_t cc)
  585. {
  586.     (void) tif;
  587.     assert((cc % 3) == 0);
  588.     TIFFSwabArrayOfTriples((uint8*) buf, cc/3);
  589. }
  590. void
  591. _TIFFSwab32BitData(TIFF* tif, tidata_t buf, tsize_t cc)
  592. {
  593.     (void) tif;
  594.     assert((cc & 3) == 0);
  595.     TIFFSwabArrayOfLong((uint32*) buf, cc/4);
  596. }
  597. void
  598. _TIFFSwab64BitData(TIFF* tif, tidata_t buf, tsize_t cc)
  599. {
  600.     (void) tif;
  601.     assert((cc & 7) == 0);
  602.     TIFFSwabArrayOfDouble((double*) buf, cc/8);
  603. }
  604. /* vim: set ts=8 sts=8 sw=8 noet: */