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

打印编程

开发平台:

Visual C++

  1. /* $Header: /cvs/maptools/cvsroot/libtiff/libtiff/tif_dumpmode.c,v 1.4 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.  *
  28.  * "Null" Compression Algorithm Support.
  29.  */
  30. #include "tiffiop.h"
  31. /*
  32.  * Encode a hunk of pixels.
  33.  */
  34. static int
  35. DumpModeEncode(TIFF* tif, tidata_t pp, tsize_t cc, tsample_t s)
  36. {
  37. (void) s;
  38. while (cc > 0) {
  39. tsize_t n;
  40. n = cc;
  41. if (tif->tif_rawcc + n > tif->tif_rawdatasize)
  42. n = tif->tif_rawdatasize - tif->tif_rawcc;
  43.                 assert( n > 0 );
  44.                 
  45. /*
  46.  * Avoid copy if client has setup raw
  47.  * data buffer to avoid extra copy.
  48.  */
  49. if (tif->tif_rawcp != pp)
  50. _TIFFmemcpy(tif->tif_rawcp, pp, n);
  51. tif->tif_rawcp += n;
  52. tif->tif_rawcc += n;
  53. pp += n;
  54. cc -= n;
  55. if (tif->tif_rawcc >= tif->tif_rawdatasize &&
  56.     !TIFFFlushData1(tif))
  57. return (-1);
  58. }
  59. return (1);
  60. }
  61. /*
  62.  * Decode a hunk of pixels.
  63.  */
  64. static int
  65. DumpModeDecode(TIFF* tif, tidata_t buf, tsize_t cc, tsample_t s)
  66. {
  67. (void) s;
  68. if (tif->tif_rawcc < cc) {
  69. TIFFErrorExt(tif->tif_clientdata, tif->tif_name,
  70.     "DumpModeDecode: Not enough data for scanline %d",
  71.     tif->tif_row);
  72. return (0);
  73. }
  74. /*
  75.  * Avoid copy if client has setup raw
  76.  * data buffer to avoid extra copy.
  77.  */
  78. if (tif->tif_rawcp != buf)
  79. _TIFFmemcpy(buf, tif->tif_rawcp, cc);
  80. tif->tif_rawcp += cc;
  81. tif->tif_rawcc -= cc;
  82. return (1);
  83. }
  84. /*
  85.  * Seek forwards nrows in the current strip.
  86.  */
  87. static int
  88. DumpModeSeek(TIFF* tif, uint32 nrows)
  89. {
  90. tif->tif_rawcp += nrows * tif->tif_scanlinesize;
  91. tif->tif_rawcc -= nrows * tif->tif_scanlinesize;
  92. return (1);
  93. }
  94. /*
  95.  * Initialize dump mode.
  96.  */
  97. int
  98. TIFFInitDumpMode(TIFF* tif, int scheme)
  99. {
  100. (void) scheme;
  101. tif->tif_decoderow = DumpModeDecode;
  102. tif->tif_decodestrip = DumpModeDecode;
  103. tif->tif_decodetile = DumpModeDecode;
  104. tif->tif_encoderow = DumpModeEncode;
  105. tif->tif_encodestrip = DumpModeEncode;
  106. tif->tif_encodetile = DumpModeEncode;
  107. tif->tif_seek = DumpModeSeek;
  108. return (1);
  109. }