primitivetype.java
来自「手机图像自动转换」· Java 代码 · 共 28 行
JAVA
28 行
package magick;/** * Corresponds to the ImageMagick enumerated type of the same name. * * @author Eric Yeo */public interface PrimitiveType { public final static int UndefinedPrimitive = 0; public final static int PointPrimitive = 1; public final static int LinePrimitive = 2; public final static int RectanglePrimitive = 3; public final static int RoundRectanglePrimitive = 4; public final static int ArcPrimitive = 5; public final static int EllipsePrimitive = 6; public final static int CirclePrimitive = 7; public final static int PolylinePrimitive = 8; public final static int PolygonPrimitive = 9; public final static int BezierPrimitive = 10; public final static int ColorPrimitive = 11; public final static int MattePrimitive = 12; public final static int TextPrimitive = 13; public final static int ImagePrimitive = 14; public final static int PathPrimitive = 15;}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?