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

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.DataBuffer;
  35. import java.awt.image.IndexColorModel;
  36. import java.awt.image.RenderedImage;
  37. import java.awt.image.SampleModel;
  38. import java.io.File;
  39. import java.io.FileInputStream;
  40. import java.io.InputStream;
  41. import java.io.IOException;
  42. import java.io.OutputStream;
  43. /**
  44.  */
  45. public final class PNGCodec extends ImageCodec {
  46.     public PNGCodec() {}
  47.     public String getFormatName() {
  48.         return "png";
  49.     }
  50.     public Class getEncodeParamClass() {
  51.         return PNGEncodeParam.class;
  52.     }
  53.     public Class getDecodeParamClass() {
  54.         return PNGDecodeParam.class;
  55.     }
  56.     public boolean canEncodeImage(RenderedImage im,
  57.                                   ImageEncodeParam param) {
  58.         SampleModel sampleModel = im.getSampleModel();
  59.         // PNG doesn't handle float or double pixels
  60.         int dataType = sampleModel.getTransferType();
  61.         if ((dataType == DataBuffer.TYPE_FLOAT) ||
  62.             (dataType == DataBuffer.TYPE_DOUBLE)) {
  63.             return false;
  64.         }
  65.         int[] sampleSize = sampleModel.getSampleSize();
  66.         int bitDepth = sampleSize[0];
  67.         // Ensure all channels have the same bit depth
  68.         for (int i = 1; i < sampleSize.length; i++) {
  69.             if (sampleSize[i] != bitDepth) {
  70.                 return false;
  71.             }
  72.         }
  73.         // Bit depth must be between 1 and 16
  74.         if (bitDepth < 1 || bitDepth > 16) {
  75.             return false;
  76.         }
  77.         // Number of bands must be between 1 and 4
  78.         int numBands = sampleModel.getNumBands();
  79.         if (numBands < 1 || numBands > 4) {
  80.             return false;
  81.         }
  82.         // Palette images must be 1-banded, depth 8 or less
  83.         ColorModel colorModel = im.getColorModel();
  84.         if (colorModel instanceof IndexColorModel) {
  85.             if (numBands != 1 || bitDepth > 8) {
  86.                 return false;
  87.             }
  88.         }
  89.         // If a param object is supplied, check that it is of the right type
  90.         if (param != null) {
  91.             if (param instanceof PNGEncodeParam) {
  92.                 if (colorModel instanceof IndexColorModel) {
  93.                     if (!(param instanceof PNGEncodeParam.Palette) ) {
  94.                         return false;
  95.                     }
  96.                 } else if (numBands < 3) {
  97.                     if (!(param instanceof PNGEncodeParam.Gray) ) {
  98.                         return false;
  99.                     }
  100.                 } else {
  101.                     if (!(param instanceof PNGEncodeParam.RGB) ) {
  102.                         return false;
  103.                     }
  104.                 }
  105.             } else {
  106.                 return false;
  107.             }
  108.         }
  109.         return true;
  110.     }
  111.     protected ImageEncoder createImageEncoder(OutputStream dst,
  112.                                               ImageEncodeParam param) {
  113.         PNGEncodeParam p = null;
  114.         if (param != null) {
  115.             p = (PNGEncodeParam)param;
  116.         }
  117.         return new PNGImageEncoder(dst, p);
  118.     }
  119.     protected ImageDecoder createImageDecoder(InputStream src,
  120.                                               ImageDecodeParam param) {
  121.         PNGDecodeParam p = null;
  122.         if (param != null) {
  123.             p = (PNGDecodeParam)param;
  124.         }
  125.         return new PNGImageDecoder(src, p);
  126.     }
  127.     protected ImageDecoder createImageDecoder(File src,
  128.                                               ImageDecodeParam param) 
  129.         throws IOException {
  130.         PNGDecodeParam p = null;
  131.         if (param != null) {
  132.             p = (PNGDecodeParam)param;
  133.         }
  134.         return new PNGImageDecoder(new FileInputStream(src), p);
  135.     }
  136.     protected ImageDecoder createImageDecoder(SeekableStream src,
  137.                                               ImageDecodeParam param) {
  138.         PNGDecodeParam p = null;
  139.         if (param != null) {
  140.             p = (PNGDecodeParam)param;
  141.         }
  142.         return new PNGImageDecoder(src, p);
  143.     }
  144.     public int getNumHeaderBytes() {
  145.         return 8;
  146.     }
  147.     public boolean isFormatRecognized(byte[] header) {
  148.         return ((header[0] == (byte)0x89) &&
  149.                 (header[1] == (byte)0x50) &&
  150.                 (header[2] == (byte)0x4e) &&
  151.                 (header[3] == (byte)0x47) &&
  152.                 (header[4] == (byte)0x0d) &&
  153.                 (header[5] == (byte)0x0a) &&
  154.                 (header[6] == (byte)0x1a) &&
  155.                 (header[7] == (byte)0x0a));
  156.     }
  157. }