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

破解

开发平台:

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 RenderingIntent {
  8.     public final int UndefinedIntent = 0;
  9.     public final int SaturationIntent = 1;
  10.     public final int PerceptualIntent = 2;
  11.     public final int AbsoluteIntent = 3;
  12.     public final int RelativeIntent = 4;
  13. }