GIFCodec.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.RenderedImage;
  34. import java.io.File;
  35. import java.io.FileInputStream;
  36. import java.io.InputStream;
  37. import java.io.IOException;
  38. import java.io.OutputStream;
  39. /**
  40.  */
  41. public final class GIFCodec extends ImageCodec {
  42.     public GIFCodec() {}
  43.     public String getFormatName() {
  44.         return "gif";
  45.     }
  46.     public Class getEncodeParamClass() {
  47.         return Object.class;
  48.     }
  49.     public Class getDecodeParamClass() {
  50.         return Object.class;
  51.     }
  52.     public boolean canEncodeImage(RenderedImage im,
  53.                                   ImageEncodeParam param) {
  54.         return false;
  55.     }
  56.     protected ImageEncoder createImageEncoder(OutputStream dst,
  57.                                               ImageEncodeParam param) {
  58.         /*
  59.         GIFEncodeParam p = null;
  60.         if (param != null) {
  61.             p = (GIFEncodeParam)param;
  62.         }
  63.         return new GIFImageEncoder(dst, p);
  64.         */
  65.         return null;
  66.     }
  67.     protected ImageDecoder createImageDecoder(InputStream src,
  68.                                               ImageDecodeParam param) {
  69.         return new GIFImageDecoder(src, param);
  70.     }
  71.     protected ImageDecoder createImageDecoder(File src,
  72.                                               ImageDecodeParam param) 
  73.         throws IOException {
  74.         return new GIFImageDecoder(new FileInputStream(src), null);
  75.     }
  76.     protected ImageDecoder createImageDecoder(SeekableStream src,
  77.                                               ImageDecodeParam param) {
  78.         return new GIFImageDecoder(src, param);
  79.     }
  80.     public int getNumHeaderBytes() {
  81.         return 4;
  82.     }
  83.     public boolean isFormatRecognized(byte[] header) {
  84.         return ((header[0] == 'G') &&
  85.                 (header[1] == 'I') &&
  86.                 (header[2] == 'F') &&
  87.                 (header[3] == '8'));
  88.     }
  89. }