BMPCodec.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.DataBuffer;
  34. import java.awt.image.PixelInterleavedSampleModel;
  35. import java.awt.image.RenderedImage;
  36. import java.awt.image.SampleModel;
  37. import java.io.File;
  38. import java.io.FileInputStream;
  39. import java.io.InputStream;
  40. import java.io.IOException;
  41. import java.io.OutputStream;
  42. /**
  43.  */
  44. public final class BMPCodec extends ImageCodec {
  45.     public BMPCodec() {}
  46.     public String getFormatName() {
  47.         return "bmp";
  48.     }
  49.     public Class getEncodeParamClass() {
  50.         return BMPEncodeParam.class;
  51.     }
  52.     public Class getDecodeParamClass() {
  53.         return Object.class;
  54.     }
  55.     public boolean canEncodeImage(RenderedImage im,
  56.                                   ImageEncodeParam param) {
  57.         SampleModel sampleModel = im.getSampleModel();
  58.         int dataType = sampleModel.getTransferType();
  59.         if ((dataType == DataBuffer.TYPE_USHORT) ||
  60.     (dataType == DataBuffer.TYPE_SHORT) ||
  61.     (dataType == DataBuffer.TYPE_INT) ||
  62.     (dataType == DataBuffer.TYPE_FLOAT) ||
  63.             (dataType == DataBuffer.TYPE_DOUBLE)) {
  64.             return false;
  65.         }
  66.         if (param != null) {
  67.             if (!(param instanceof BMPEncodeParam)) {
  68.                 return false;
  69.             }
  70.             BMPEncodeParam BMPParam = (BMPEncodeParam)param;
  71.             int version = BMPParam.getVersion();
  72.             if ((version == BMPEncodeParam.VERSION_2) ||
  73.                 (version == BMPEncodeParam.VERSION_4)) {
  74.                 return false;
  75.             }
  76.         }
  77.         return true;
  78.     }
  79.     protected ImageEncoder createImageEncoder(OutputStream dst,
  80.                                               ImageEncodeParam param) {
  81.         BMPEncodeParam p = null;
  82.         if (param != null) {
  83.             p = (BMPEncodeParam)param;
  84.         }
  85.         return new BMPImageEncoder(dst, p);
  86.     }
  87.     protected ImageDecoder createImageDecoder(InputStream src,
  88.                                               ImageDecodeParam param) {
  89.         return new BMPImageDecoder(src, null);
  90.     }
  91.     protected ImageDecoder createImageDecoder(File src,
  92.                                               ImageDecodeParam param) 
  93.         throws IOException {
  94.         return new BMPImageDecoder(new FileInputStream(src), null);
  95.     }
  96.     protected ImageDecoder createImageDecoder(SeekableStream src,
  97.                                               ImageDecodeParam param) {
  98.         return new BMPImageDecoder(src, null);
  99.     }
  100.     public int getNumHeaderBytes() {
  101.         return 2;
  102.     }
  103.     public boolean isFormatRecognized(byte[] header) {
  104.         return ((header[0] == 0x42) &&
  105.                 (header[1] == 0x4d));
  106.     }
  107. }