ImageMagick使用for java(im4java)

工程師WWW發表於2015-06-16

簡介:用於讀、寫、處理圖片檔案,支援89種格式的圖片檔案,利用imageMagick可以根據web應用程式動態生成圖片,也可以將一個或者一組圖片改變大小、旋轉、銳化、減色、增加特效等操作,並對操作結果進行儲存(可以設定儲存格式)。ImageMagick是免費軟體:全部原始碼開放,可以自由使用,複製,修改,釋出。

ImageMagick命令:http://wenku.baidu.com/view/078062b069dc5022aaea007f.html

各種語言介面:(見http://www.imagemagick.org/script/api.php

Ada:G2F         C:MagickWand 和MagickCore          Ch:ChMagick          COM+:ImageMagickObject      C++:Magick++          java:JMagick和Im4java

開源中國社群中原始碼檢視:http://www.oschina.net/code/explore/ImageMagick-6.6.6-6

使用方法:首先要安裝ImageMagick這個工具,安裝好這個工具後,再下載im4java包放到專案lib目錄裡就行了。

ImageMagick  java 介面(im4java api):http://im4java.sourceforge.net/api/   (如果進不了就從http://www.imagemagick.org/script/api.php =>java=>im4java 進入)

im4java原始碼下載:http://sourceforge.jp/projects/sfnet_im4java/downloads/im4java-1.3.2/im4java-1.3.2-src.tar.bz2/

  1. public class ImageTools {  
  2.   
  3.     /** 
  4.      * ImageMagick的路徑 
  5.      */  
  6.     public static String imageMagickPath = null;  
  7.     static {  
  8.         /** 
  9.          *  
  10.          * 獲取ImageMagick的路徑 
  11.          */  
  12.         Properties prop = new PropertiesFile().getPropertiesFile();  
  13.         //linux下不要設定此值,不然會報錯  
  14.         imageMagickPath = prop.getProperty("imageMagickPath");  
  15.     }  
  16.   
  17.     /** 
  18.      *  
  19.      * 根據座標裁剪圖片 
  20.      *  
  21.      * @param srcPath   要裁剪圖片的路徑 
  22.      * @param newPath   裁剪圖片後的路徑 
  23.      * @param x         起始橫座標 
  24.      * @param y         起始縱座標 
  25.      * @param x1        結束橫座標 
  26.      * @param y1        結束縱座標 
  27.      */  
  28.   
  29.     public static void cutImage(String srcPath, String newPath, int x, int y, int x1,   int y1) throws Exception {  
  30.         int width = x1 - x;  
  31.         int height = y1 - y;  
  32.         IMOperation op = new IMOperation();  
  33.         op.addImage(srcPath);  
  34.         /** 
  35.          * width:  裁剪的寬度 
  36.          * height: 裁剪的高度 
  37.          * x:       裁剪的橫座標 
  38.          * y:       裁剪的挫座標 
  39.          */  
  40.         op.crop(width, height, x, y);  
  41.         op.addImage(newPath);  
  42.         ConvertCmd convert = new ConvertCmd();  
  43.   
  44.         // linux下不要設定此值,不然會報錯  
  45.         convert.setSearchPath(imageMagickPath);  
  46.   
  47.         convert.run(op);  
  48.     }  
  49.   
  50.     /** 
  51.      *  
  52.      * 根據尺寸縮放圖片 
  53.      * @param width             縮放後的圖片寬度 
  54.      * @param height            縮放後的圖片高度 
  55.      * @param srcPath           源圖片路徑 
  56.      * @param newPath           縮放後圖片的路徑 
  57.      */  
  58.     public static void cutImage(int width, int height, String srcPath,  String newPath) throws Exception {  
  59.         IMOperation op = new IMOperation();  
  60.         op.addImage(srcPath);  
  61.         op.resize(width, height);  
  62.         op.addImage(newPath);  
  63.         ConvertCmd convert = new ConvertCmd();  
  64.         // linux下不要設定此值,不然會報錯  
  65.         convert.setSearchPath(imageMagickPath);  
  66.         convert.run(op);  
  67.   
  68.     }  
  69.   
  70.     /** 
  71.      * 根據寬度縮放圖片 
  72.      *  
  73.      * @param width            縮放後的圖片寬度 
  74.      * @param srcPath          源圖片路徑 
  75.      * @param newPath          縮放後圖片的路徑 
  76.      */  
  77.     public static void cutImage(int width, String srcPath, String newPath)  throws Exception {  
  78.         IMOperation op = new IMOperation();  
  79.         op.addImage(srcPath);  
  80.         op.resize(width, null);  
  81.         op.addImage(newPath);  
  82.         ConvertCmd convert = new ConvertCmd();  
  83.         // linux下不要設定此值,不然會報錯  
  84.         convert.setSearchPath(imageMagickPath);  
  85.         convert.run(op);  
  86.     }  
  87.   
  88.     /** 
  89.      * 給圖片加水印 
  90.      * @param srcPath            源圖片路徑 
  91.      */  
  92.     public static void addImgText(String srcPath) throws Exception {  
  93.         IMOperation op = new IMOperation();  
  94.         op.font("宋體").gravity("southeast").pointsize(18).fill("#BCBFC8")  
  95.                 .draw("text 5,5 juziku.com");  
  96.         op.addImage();  
  97.         op.addImage();  
  98.         ConvertCmd convert = new ConvertCmd();  
  99.         // linux下不要設定此值,不然會報錯  
  100.         convert.setSearchPath(imageMagickPath);  
  101.         convert.run(op, srcPath, srcPath);  
  102.     }  
  103.   
  104.     public static void main(String[] args) throws Exception {  
  105.         // cutImage("D:\\test.jpg", "D:\\new.jpg", 98, 48, 370,320);  
  106.         // cutImage(200,300, "/home/1.jpg", "/home/2.jpg");  
  107.         addImgText("//home//1.jpg");  
  108.     }  
  109. }  


 

注意事項:如果是在windows下執行,則需要配置ImageMagick的路徑(現在很多安裝程式都不需要設定,已經自動幫你設定好了):

在環境變數path中新增(C:\Program Files\ImageMagick-6.7.5-Q16;) 

或者

  1. public static String imageMagickPath;  
  2. Properties prop = new PropertiesFile().getPropertiesFile();   
  3. imageMagickPath = prop.getProperty("imageMagickPath");  
  4. ConvertCmd convert = new ConvertCmd();  
  5. convert.setSearchPath(imageMagickPath);   

在config.properties檔案裡了,內容如下所示: imageMagickPath=C:\\Program Files\\ImageMagick-6.7.5-Q16;

如果是在linux平臺下,千萬不需要配置,設定了會報錯。 


相關文章