Package com.wordpress.util

Examples of com.wordpress.util.Imagick


   * @param h
   */
  public void imagicDeal(String fileName, String newFileName, int w, int h) {
    try {
      if (!isWindows())
        new Imagick().thumbnail(fileName, newFileName, w, h);
      else
        FileUtil.copy(fileName, newFileName, true);
    } catch (Exception e) {
      logger.error("�ϴ�ͼƬʱ�����쳣��", e);
    }
View Full Code Here

TOP

Related Classes of com.wordpress.util.Imagick

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.