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

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.Graphics2D;
  34. import java.awt.Point;
  35. import java.awt.geom.AffineTransform;
  36. import java.awt.image.BufferedImage;
  37. import java.awt.image.ComponentSampleModel;
  38. import java.awt.image.Raster;
  39. import java.awt.image.RenderedImage;
  40. import java.io.InputStream;
  41. import java.io.IOException;
  42. import com.sun.image.codec.jpeg.ImageFormatException;
  43. /**
  44.  */
  45. public class JPEGImageDecoder extends ImageDecoderImpl {
  46.     public JPEGImageDecoder(InputStream input,
  47.                             ImageDecodeParam param) {
  48.         super(input, param);
  49.     }
  50.     public RenderedImage decodeAsRenderedImage(int page) throws IOException {
  51.         if (page != 0) {
  52.             throw new IOException(JaiI18N.getString("JPEGImageDecoder0"));
  53.         }
  54.         return new JPEGImage(input);
  55.     }
  56. }
  57. class JPEGImage extends SimpleRenderedImage {
  58.     private BufferedImage image = null;
  59.     /**
  60.      * Construct a JPEGmage.
  61.      *
  62.      * @param stream The JPEG InputStream.
  63.      */
  64.     public JPEGImage(InputStream stream) {
  65.         com.sun.image.codec.jpeg.JPEGImageDecoder decoder =
  66.             com.sun.image.codec.jpeg.JPEGCodec.createJPEGDecoder(stream);
  67.         try {
  68.             // decodeAsBufferedImage performs default color conversions
  69.             image = decoder.decodeAsBufferedImage();
  70.         } catch (ImageFormatException e) {
  71.             throw new RuntimeException(JaiI18N.getString("JPEGImageDecoder1"));
  72.         } catch (IOException e) {
  73.             throw new RuntimeException(JaiI18N.getString("JPEGImageDecoder2"));
  74. }
  75.         minX = 0;
  76.         minY = 0;
  77.         tileWidth = width = image.getWidth();
  78.         tileHeight = height = image.getHeight();
  79.         // Force image to have a ComponentSampleModel
  80.         // since SinglePixelPackedSampleModels are not working
  81.         if (!(image.getSampleModel() instanceof ComponentSampleModel)) {
  82.             int type = -1;
  83.             int numBands = image.getSampleModel().getNumBands();
  84.             if (numBands == 1) {
  85.                 type = BufferedImage.TYPE_BYTE_GRAY;
  86.             } else if (numBands == 3) {
  87.                 type = BufferedImage.TYPE_3BYTE_BGR;
  88.             } else if (numBands == 4) {
  89.                 type = BufferedImage.TYPE_4BYTE_ABGR;
  90.             } else {
  91.                 throw new RuntimeException(JaiI18N.getString("JPEGImageDecoder3"));
  92.             }
  93.             BufferedImage bi = new BufferedImage(width, height, type);
  94.             Graphics2D g = bi.createGraphics();
  95.             g.drawRenderedImage(image, new AffineTransform());
  96.             image = bi;
  97.         }
  98.         sampleModel = image.getSampleModel();
  99.         colorModel = image.getColorModel();
  100.     }
  101.     public synchronized Raster getTile(int tileX, int tileY) {
  102.         if (tileX != 0 || tileY != 0) {
  103.             throw new IllegalArgumentException(JaiI18N.getString("JPEGImageDecoder4"));
  104.         }
  105.         return image.getTile(0, 0);
  106.     }
  107. }