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

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.image.Raster;
  34. import java.awt.image.RenderedImage;
  35. import java.io.InputStream;
  36. import java.io.IOException;
  37. /**
  38.  * An interface describing objects that transform an InputStream into a
  39.  * BufferedImage or Raster.
  40.  *
  41.  * <p><b> This interface is not a committed part of the JAI API.  It may
  42.  * be removed or changed in future releases of JAI.</b>
  43.  */
  44. public interface ImageDecoder {
  45.     /**
  46.      * Returns the current parameters as an instance of the
  47.      * ImageDecodeParam interface.  Concrete implementations of this
  48.      * interface will return corresponding concrete implementations of
  49.      * the ImageDecodeParam interface.  For example, a JPEGImageDecoder
  50.      * will return an instance of JPEGDecodeParam.
  51.      */
  52.     ImageDecodeParam getParam();
  53.     /**
  54.      * Sets the current parameters to an instance of the 
  55.      * ImageDecodeParam interface.  Concrete implementations
  56.      * of ImageDecoder may throw a RuntimeException if the
  57.      * param argument is not an instance of the appropriate
  58.      * subclass or subinterface.  For example, a JPEGImageDecoder
  59.      * will expect param to be an instance of JPEGDecodeParam.
  60.      */
  61.     void setParam(ImageDecodeParam param);
  62.     /** Returns the SeekableStream associated with this ImageDecoder. */
  63.     SeekableStream getInputStream();
  64.     /** Returns the number of pages present in the current stream. */
  65.     int getNumPages() throws IOException;
  66.     /**
  67.      * Returns a Raster that contains the decoded contents of the
  68.      * SeekableStream associated with this ImageDecoder.  Only
  69.      * the first page of a multi-page image is decoded.
  70.      */
  71.     Raster decodeAsRaster() throws IOException;
  72.     /**
  73.      * Returns a Raster that contains the decoded contents of the
  74.      * SeekableStream associated with this ImageDecoder.
  75.      * The given page of a multi-page image is decoded.  If
  76.      * the page does not exist, an IOException will be thrown.
  77.      * Page numbering begins at zero.
  78.      *
  79.      * @param page The page to be decoded.
  80.      */
  81.     Raster decodeAsRaster(int page) throws IOException;
  82.     /**
  83.      * Returns a RenderedImage that contains the decoded contents of the
  84.      * SeekableStream associated with this ImageDecoder.  Only
  85.      * the first page of a multi-page image is decoded.
  86.      */
  87.     RenderedImage decodeAsRenderedImage() throws IOException;
  88.     /**
  89.      * Returns a RenderedImage that contains the decoded contents of the
  90.      * SeekableStream associated with this ImageDecoder.
  91.      * The given page of a multi-page image is decoded.  If
  92.      * the page does not exist, an IOException will be thrown.
  93.      * Page numbering begins at zero.
  94.      *
  95.      * @param page The page to be decoded.
  96.      */
  97.     RenderedImage decodeAsRenderedImage(int page) throws IOException;
  98. }