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

破解

开发平台:

Java

  1. package magick;
  2. public interface ResolutionType {
  3.     public final static int UndefinedResolution = 0;
  4.     public final static int PixelsPerInchResolution = 1;
  5.     public final static int PixelsPerCentimeterResolution = 2;
  6. }