InterlaceType.java
上传用户:qingzhou
上传日期:2013-04-21
资源大小:733k
文件大小:0k
源码类别:

破解

开发平台:

Java

  1. package magick;
  2. /**
  3.  * Corresponds to the ImageMagick enumerated type of the same name.
  4.  *
  5.  * @author Eric Yeo
  6.  */
  7. public interface InterlaceType {
  8.     public final static int UndefinedInterlace = 0;
  9.     public final static int NoInterlace = 1;
  10.     public final static int LineInterlace = 2;
  11.     public final static int PlaneInterlace = 3;
  12.     public final static int PartitionInterlace = 4;
  13. }