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

破解

开发平台:

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 PrimitiveType {
  8.     public final static int UndefinedPrimitive = 0;
  9.     public final static int PointPrimitive = 1;
  10.     public final static int LinePrimitive = 2;
  11.     public final static int RectanglePrimitive = 3;
  12.     public final static int RoundRectanglePrimitive = 4;
  13.     public final static int ArcPrimitive = 5;
  14.     public final static int EllipsePrimitive = 6;
  15.     public final static int CirclePrimitive = 7;
  16.     public final static int PolylinePrimitive = 8;
  17.     public final static int PolygonPrimitive = 9;
  18.     public final static int BezierPrimitive = 10;
  19.     public final static int ColorPrimitive = 11;
  20.     public final static int MattePrimitive = 12;
  21.     public final static int TextPrimitive = 13;
  22.     public final static int ImagePrimitive = 14;
  23.     public final static int PathPrimitive = 15;
  24. }