RenderingIntent.java
Upload User: qingzhou
Upload Date: 2013-04-21
Package Size: 733k
Code Size: 0k
Category:

Crack_Hack

Development Platform:

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. }