TIFFImageDecoder.java
上传用户:btjssb159
上传日期:2018-01-04
资源大小:241k
文件大小:6k
源码类别:

DNA

开发平台:

Java

  1. /*
  2.  * Copyright (c) 2001 Sun Microsystems, Inc. All Rights Reserved.
  3.  *
  4.  * Redistribution and use in source and binary forms, with or without 
  5.  * modification, are permitted provided that the following conditions are met:
  6.  * 
  7.  * -Redistributions of source code must retain the above copyright notice, this 
  8.  * list of conditions and the following disclaimer.
  9.  *
  10.  * -Redistribution in binary form must reproduct the above copyright notice,
  11.  * this list of conditions and the following disclaimer in the documentation
  12.  * and/or other materials provided with the distribution.
  13.  * 
  14.  * Neither the name of Sun Microsystems, Inc. or the names of contributors may
  15.  * be used to endorse or promote products derived from this software without
  16.  * specific prior written permission.
  17.  * 
  18.  * This software is provided "AS IS," without a warranty of any kind. ALL
  19.  * EXPRESS OR IMPLIED CONDITIONS, REPRESENTATIONS AND WARRANTIES, INCLUDING ANY
  20.  * IMPLIED WARRANTY OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE OR
  21.  * NON-INFRINGEMENT, ARE HEREBY EXCLUDED. SUN AND ITS LICENSORS SHALL NOT BE
  22.  * LIABLE FOR ANY DAMAGES SUFFERED BY LICENSEE AS A RESULT OF USING, MODIFYING
  23.  * OR DISTRIBUTING THE SOFTWARE OR ITS DERIVATIVES. IN NO EVENT WILL SUN OR ITS
  24.  * LICENSORS BE LIABLE FOR ANY LOST REVENUE, PROFIT OR DATA, OR FOR DIRECT,
  25.  * INDIRECT, SPECIAL, CONSEQUENTIAL, INCIDENTAL OR PUNITIVE DAMAGES, HOWEVER
  26.  * CAUSED AND REGARDLESS OF THE THEORY OF LIABILITY, ARISING OUT OF THE USE OF
  27.  * OR INABILITY TO USE SOFTWARE, EVEN IF SUN HAS BEEN ADVISED OF THE
  28.  * POSSIBILITY OF SUCH DAMAGES.
  29.  * 
  30.  * You acknowledge that Software is not designed,licensed or intended for use in 
  31.  * the design, construction, operation or maintenance of any nuclear facility.
  32.  */
  33. import java.awt.Point;
  34. import java.awt.Rectangle;
  35. import java.awt.Transparency;
  36. import java.awt.color.ColorSpace;
  37. import java.awt.image.ColorModel;
  38. import java.awt.image.DataBuffer;
  39. import java.awt.image.DataBufferByte;
  40. import java.awt.image.DataBufferShort;
  41. import java.awt.image.DataBufferUShort;
  42. import java.awt.image.Raster;
  43. import java.awt.image.WritableRaster;
  44. import java.awt.image.RenderedImage;
  45. import java.awt.image.SampleModel;
  46. import java.awt.image.IndexColorModel;
  47. import java.awt.image.MultiPixelPackedSampleModel;
  48. import java.awt.image.PixelInterleavedSampleModel;
  49. import java.awt.image.ComponentColorModel;
  50. import java.io.File;
  51. import java.io.InputStream;
  52. import java.io.IOException;
  53. /**
  54.  * A baseline TIFF reader. The reader has some functionality in addition to 
  55.  * the baseline specifications for Bilevel images, for which the group 3 and
  56.  * group 4 decompression schemes have been implemented. Support for LZW 
  57.  * decompression has also been added. Support for Horizontal differencing 
  58.  * predictor decoding is also included, when used with LZW compression. 
  59.  * However, this support is limited to data with bitsPerSample value of 8. 
  60.  * When reading in RGB images, support for alpha and extraSamples being
  61.  * present has been added. Support for reading in images with 16 bit samples
  62.  * has been added. Support for the SampleFormat tag (signed samples as well
  63.  * as floating-point samples) has also been added. In all other cases, support
  64.  * is limited to Baseline specifications.
  65.  *
  66.  *
  67.  */
  68. public class TIFFImageDecoder extends ImageDecoderImpl {
  69.     // All the TIFF tags that we care about
  70.     public static final int TIFF_IMAGE_WIDTH                = 256;
  71.     public static final int TIFF_IMAGE_LENGTH               = 257;
  72.     public static final int TIFF_BITS_PER_SAMPLE            = 258;
  73.     public static final int TIFF_COMPRESSION                = 259;
  74.     public static final int TIFF_PHOTOMETRIC_INTERPRETATION = 262;
  75.     public static final int TIFF_FILL_ORDER                 = 266;
  76.     public static final int TIFF_STRIP_OFFSETS              = 273;
  77.     public static final int TIFF_SAMPLES_PER_PIXEL          = 277;
  78.     public static final int TIFF_ROWS_PER_STRIP             = 278;
  79.     public static final int TIFF_STRIP_BYTE_COUNTS          = 279;
  80.     public static final int TIFF_X_RESOLUTION               = 282;
  81.     public static final int TIFF_Y_RESOLUTION               = 283;
  82.     public static final int TIFF_PLANAR_CONFIGURATION       = 284;
  83.     public static final int TIFF_T4_OPTIONS                 = 292;
  84.     public static final int TIFF_T6_OPTIONS                 = 293;
  85.     public static final int TIFF_RESOLUTION_UNIT            = 296;
  86.     public static final int TIFF_PREDICTOR                  = 317;
  87.     public static final int TIFF_COLORMAP                   = 320;
  88.     public static final int TIFF_TILE_WIDTH                 = 322;
  89.     public static final int TIFF_TILE_LENGTH                = 323;
  90.     public static final int TIFF_TILE_OFFSETS               = 324;
  91.     public static final int TIFF_TILE_BYTE_COUNTS           = 325;
  92.     public static final int TIFF_EXTRA_SAMPLES              = 338;
  93.     public static final int TIFF_SAMPLE_FORMAT              = 339;
  94.     public static final int TIFF_S_MIN_SAMPLE_VALUE         = 340;
  95.     public static final int TIFF_S_MAX_SAMPLE_VALUE         = 341;
  96.     public TIFFImageDecoder(SeekableStream input,
  97.                             ImageDecodeParam param) {
  98.         super(input, param);
  99.     }
  100.     public int getNumPages() throws IOException {
  101.         return TIFFDirectory.getNumDirectories(input);
  102.     }
  103.     public RenderedImage decodeAsRenderedImage(int page) throws IOException {
  104.         if  ((page < 0) || (page >= getNumPages())) {
  105.             throw new IOException(JaiI18N.getString("TIFFImageDecoder0"));
  106.         }
  107.         return new TIFFImage(input, (TIFFDecodeParam)param, page);
  108.     }
  109. }