previewtype.java

来自「手机图像自动转换」· Java 代码 · 共 43 行

JAVA
43
字号
package magick;/** * Corresponds to the ImageMagick enumerated type of the same name. * * @author Eric Yeo */public interface PreviewType {    public final static int UndefinedPreview = 0;    public final static int RotatePreview = 1;    public final static int ShearPreview = 2;    public final static int RollPreview = 3;    public final static int HuePreview = 4;    public final static int SaturationPreview = 5;    public final static int BrightnessPreview = 6;    public final static int GammaPreview = 7;    public final static int SpiffPreview = 8;    public final static int DullPreview = 9;    public final static int GrayscalePreview = 10;    public final static int QuantizePreview = 11;    public final static int DespecklePreview = 12;    public final static int ReduceNoisePreview = 13;    public final static int AddNoisePreview = 14;    public final static int SharpenPreview = 15;    public final static int BlurPreview = 16;    public final static int ThresholdPreview = 17;    public final static int EdgeDetectPreview = 18;    public final static int SpreadPreview = 19;    public final static int SolarizePreview = 20;    public final static int ShadePreview = 21;    public final static int RaisePreview = 22;    public final static int SegmentPreview = 23;    public final static int SwirlPreview = 24;    public final static int ImplodePreview = 25;    public final static int WavePreview = 26;    public final static int OilPaintPreview = 27;    public final static int CharcoalDrawingPreview = 28;    public final static int JPEGPreview = 29;}

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?