InterlaceType.java
Upload User: qingzhou
Upload Date: 2013-04-21
Package Size: 733k
Code Size: 0k
Category:

Crack_Hack

Development Platform:

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. }