com.supermap.data
类 TiffCompressType

java.lang.Object
  继承者 com.supermap.data.Enum
      继承者 com.supermap.data.TiffCompressType

public final class TiffCompressType
extends Enum

影像压缩编码方式常量


字段摘要
static TiffCompressType DEFLATE
          无损压缩。
static TiffCompressType JPEG
          有损压缩。
static TiffCompressType LZW
          无损压缩。
static TiffCompressType NONE
          无压缩。
 
方法摘要
 
从类 com.supermap.data.Enum 继承的方法
equals, getEnums, getNameByValue, getNames, getPredefineValues, getValueByName, getValues, hashCode, isDefined, isDefined, name, parse, parse, toString, value
 
从类 java.lang.Object 继承的方法
getClass, notify, notifyAll, wait, wait, wait
 

字段详细信息

NONE

public static final TiffCompressType NONE
无压缩。


DEFLATE

public static final TiffCompressType DEFLATE
无损压缩。DEFLATE是同时使用了LZ77算法与哈夫曼编码(Huffman)的一个无损数据压缩算法。


LZW

public static final TiffCompressType LZW
无损压缩。采用一种先进的串表压缩,将每个第一次出现的串放在一个串表中,用一个数字来表示串,压缩文件只存贮数字,不存贮串,从而使图象文件的压缩效率得到较大的提高。


JPEG

public static final TiffCompressType JPEG
有损压缩。基于DCT离散余弦变换压缩算法