Linux ImageMagickのインストール

4545 ワード

ImageMagickはいいものだ彼を入れて画像処理する必要がある
linuxでインストールするには、まず他の依存パッケージをインストールする必要があります.
# yum install libjpeg
# yum install libjpeg-devel
# yum install libpng
# yum install libpng-devel
# yum install libtiff
# yum install libtiff-devel
# yum install libungif
# yum install libungif-devel
# yum install freetype
そしてImageMagickをインストールするときに、
yum install ImageMagick
yum install ImageMagick*
しかし、バージョンは最高ではなく、パフォーマンスに問題があるのではないかと心配しています.ソースコードを使用してインストールする方法です.
からhttp://imagemagick.sourceforge.net/ダウンロード
tarを解凍してconfigureを行います
./configure --prefix=/usr/local/ImageMagick --enable-shared --enable-lzw --without-perl
この中の--enable-sharedと--enable-lzwの役割はよく分かりません.ドキュメントの英語もよく読めませんが、ネット上ではそうしています.私は先にそうしました.
そしてmake&&make install
インストールが完了すると、インストールディレクトリの下のbinパッケージのconvertコマンドを使用して画像を変換できます.
Javaプログラムを呼び出すには、JMagicをインストールする必要があります.
残念ながらJMagickというものはいつも成功せず、何年も更新されていません.だからim 4 javaという今の更新がまめな良いものを使いました.本当に救命の良薬ですね.
インターネットim 4 javaを転載するツールの例は以下の通りです.

import org.im4java.core.ConvertCmd;  
import org.im4java.core.IMOperation;  
  
public class ImagesUtil {  
       /** 
     * ImageMagick    
     */  
    public static String imageMagickPath = null;  
       
    static{  
        /** 
         *   ImageMagick    
         */  
        //linux       ,       
        //imageMagickPath = "D:\\Program Files\\ImageMagick-6.7.7-Q8";     
    }  
       
       
    /** 
     *          
     * 
     * @param srcPath            
     * @param newPath            
     * @param x         
     * @param y         
     * @param x1        
     * @param y1        
     */  
    public static void cutImage(String srcPath, String newPath, int x, int y, int x1,  
            int y1)  throws Exception {  
        int width = x1 - x;  
        int height = y1 - y;  
        IMOperation op = new IMOperation();  
        op.addImage(srcPath);  
           
        /** 
         * width:      
         * height:      
         * x:       
         * y:       
         */  
        op.crop(width, height, x, y);  
           
        op.addImage(newPath);  
           
        ConvertCmd convert = new ConvertCmd();  
           
        //linux       ,       
        convert.setSearchPath(imageMagickPath);  
           
   
        convert.run(op);  
    }  
       
    /** 
     *          
     * @param width           
     * @param height           
     * @param srcPath         
     * @param newPath            
     */  
    public static void zoomImage(Integer width, Integer height, String srcPath, String newPath) throws Exception {  
        IMOperation op = new IMOperation();  
        op.addImage(srcPath);  
           
        op.resize(width, height);  
        op.addImage(newPath);  
           
        ConvertCmd convert = new ConvertCmd();  
           
        //linux       ,       
        convert.setSearchPath(imageMagickPath);  
           
        convert.run(op);  
    }  
       
       
    /** 
     *        
     * @param srcPath         
     */  
    public static void addImgText(String srcPath) throws Exception {  
        IMOperation op = new IMOperation();  
        op.font("  ").gravity("southeast").pointsize(18).fill("#BCBFC8").draw("text 5,5 bcinfo.com");        
           
        op.addImage();  
        op.addImage();  
        ConvertCmd convert = new ConvertCmd();  
           
        //linux       ,       
        convert.setSearchPath(imageMagickPath);  
   
        convert.run(op,srcPath,srcPath);  
    }  
       
       
    public static void main(String[] args) throws Exception{  
        //cutImage("c://images//firelily.jpg", "c://images//firelily232.jpg", 98, 48, 300, 300);  
    	zoomImage(100 ,100, "/home/lection/test/1.jpg", "/home/lection/test/2.jpg");  
        //addImgText("c://images.src//firelily.jpg");  
    }  
}