GIFImageDecoder.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.Canvas;
  34. import java.awt.Graphics;
  35. import java.awt.Image;
  36. import java.awt.MediaTracker;
  37. import java.awt.Toolkit;
  38. import java.awt.image.BufferedImage;
  39. import java.awt.image.ImageProducer;
  40. import java.awt.image.RenderedImage;
  41. import java.io.BufferedInputStream;
  42. import java.io.InputStream;
  43. import java.io.IOException;
  44. // WARNING -- UNOFFICIAL CLASSES, NOT 100% PURE!
  45. import sun.awt.image.FileImageSource;
  46. import sun.awt.image.InputStreamImageSource;
  47. import sun.awt.image.GifImageDecoder;
  48. // Name conflict, can't use import
  49. // import sun.awt.image.ImageDecoder;
  50. class GIFImageSource extends FileImageSource {
  51.     InputStream is;
  52.     public GIFImageSource(InputStream is) {
  53.         super("junk"); // security?
  54.         if (is instanceof BufferedInputStream) {
  55.             this.is = is;
  56.         } else {
  57.             this.is = new BufferedInputStream(is);
  58.         }
  59.     }
  60.     protected sun.awt.image.ImageDecoder getDecoder() {
  61.         return new GifImageDecoder(this, is);
  62.     }
  63. }
  64. /**
  65.  */
  66. public class GIFImageDecoder extends ImageDecoderImpl {
  67.     BufferedImage bufferedImage = null;
  68.     public GIFImageDecoder(InputStream input,
  69.                            ImageDecodeParam param) {
  70.         super(input, param);
  71.     }
  72.     private synchronized RenderedImage decode() throws IOException {
  73.         if (bufferedImage == null) {
  74.             InputStreamImageSource source = new GIFImageSource(input);
  75.             Image image =
  76.                 Toolkit.getDefaultToolkit().createImage((ImageProducer)source);
  77.             
  78.             MediaTracker tracker = new MediaTracker(new Canvas());
  79.             tracker.addImage(image, 0);
  80.             try {
  81.                 tracker.waitForID(0);
  82.             } catch (InterruptedException e) {
  83.                 throw new RuntimeException(JaiI18N.getString("GIFImageDecoder0"));
  84.             }
  85.     if (tracker.isErrorID(0)) { // not standard file format
  86.                 throw new RuntimeException(JaiI18N.getString("GIFImageDecoder1"));
  87.             }
  88.             tracker.removeImage(image);
  89.             
  90.             /* Ignore width and height from ImageLayout. */
  91.             int width = image.getWidth(null);
  92.             int height = image.getHeight(null);
  93.             
  94.             bufferedImage =
  95.                 new BufferedImage(width, height, BufferedImage.TYPE_3BYTE_BGR);
  96.             Graphics g = bufferedImage.getGraphics();
  97.             g.drawImage(image, 0, 0, null);
  98.         }
  99.         return bufferedImage;
  100.     }
  101.     public RenderedImage decodeAsRenderedImage(int page) throws IOException {
  102.         if (page != 0) {
  103.             throw new IOException(JaiI18N.getString("GIFImageDecoder2"));
  104.         }
  105.         return decode();
  106.     }
  107. }