ImageEncoderImpl.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.ColorModel;
  34. import java.awt.image.Raster;
  35. import java.awt.image.RenderedImage;
  36. import java.io.IOException;
  37. import java.io.OutputStream;
  38. /**
  39.  * A partial implementation of the ImageEncoder interface useful for
  40.  * subclassing.
  41.  *
  42.  * <p><b> This class is not a committed part of the JAI API.  It may
  43.  * be removed or changed in future releases of JAI.</b>
  44.  */
  45. public abstract class ImageEncoderImpl implements ImageEncoder {
  46.     
  47.     /** The OutputStream associcted with this ImageEncoder. */
  48.     protected OutputStream output;
  49.     /** The ImageEncodeParam object associcted with this ImageEncoder. */
  50.     protected ImageEncodeParam param;
  51.     /**
  52.      * Constructs an ImageEncoderImpl with a given OutputStream
  53.      * and ImageEncoderParam instance.
  54.      */
  55.     public ImageEncoderImpl(OutputStream output,
  56.                             ImageEncodeParam param) {
  57.         this.output = output;
  58.         this.param = param;
  59.     }
  60.     /**
  61.      * Returns the current parameters as an instance of the
  62.      * ImageEncodeParam interface.  Concrete implementations of this
  63.      * interface will return corresponding concrete implementations of
  64.      * the ImageEncodeParam interface.  For example, a JPEGImageEncoder
  65.      * will return an instance of JPEGEncodeParam.
  66.      */
  67.     public ImageEncodeParam getParam() {
  68.         return param;
  69.     }
  70.     /**
  71.      * Sets the current parameters to an instance of the 
  72.      * ImageEncodeParam interface.  Concrete implementations
  73.      * of ImageEncoder may throw a RuntimeException if the
  74.      * params argument is not an instance of the appropriate
  75.      * subclass or subinterface.  For example, a JPEGImageEncoder
  76.      * will expect param to be an instance of JPEGEncodeParam.
  77.      */
  78.     public void setParam(ImageEncodeParam param) {
  79.         this.param = param;
  80.     }
  81.     /** Returns the OutputStream associated with this ImageEncoder. */
  82.     public OutputStream getOutputStream() {
  83.         return output;
  84.     }
  85.     
  86.     /**
  87.      * Encodes a Raster with a given ColorModel and writes the output
  88.      * to the OutputStream associated with this ImageEncoder.
  89.      */
  90.     public void encode(Raster ras, ColorModel cm) throws IOException {
  91.         RenderedImage im = new SingleTileRenderedImage(ras, cm);
  92.         encode(im);
  93.     }
  94.     /**
  95.      * Encodes a RenderedImage and writes the output to the
  96.      * OutputStream associated with this ImageEncoder.
  97.      */
  98.     public abstract void encode(RenderedImage im) throws IOException;
  99. }