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

破解

开发平台:

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 PreviewType {
  8.     public final static int UndefinedPreview = 0;
  9.     public final static int RotatePreview = 1;
  10.     public final static int ShearPreview = 2;
  11.     public final static int RollPreview = 3;
  12.     public final static int HuePreview = 4;
  13.     public final static int SaturationPreview = 5;
  14.     public final static int BrightnessPreview = 6;
  15.     public final static int GammaPreview = 7;
  16.     public final static int SpiffPreview = 8;
  17.     public final static int DullPreview = 9;
  18.     public final static int GrayscalePreview = 10;
  19.     public final static int QuantizePreview = 11;
  20.     public final static int DespecklePreview = 12;
  21.     public final static int ReduceNoisePreview = 13;
  22.     public final static int AddNoisePreview = 14;
  23.     public final static int SharpenPreview = 15;
  24.     public final static int BlurPreview = 16;
  25.     public final static int ThresholdPreview = 17;
  26.     public final static int EdgeDetectPreview = 18;
  27.     public final static int SpreadPreview = 19;
  28.     public final static int SolarizePreview = 20;
  29.     public final static int ShadePreview = 21;
  30.     public final static int RaisePreview = 22;
  31.     public final static int SegmentPreview = 23;
  32.     public final static int SwirlPreview = 24;
  33.     public final static int ImplodePreview = 25;
  34.     public final static int WavePreview = 26;
  35.     public final static int OilPaintPreview = 27;
  36.     public final static int CharcoalDrawingPreview = 28;
  37.     public final static int JPEGPreview = 29;
  38. }