1
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 3 years have passed since last update.

ImageMagick7 + im4java

Posted at

im4java経由でImageMagickを呼び出す。環境はwindows 10。

環境

  • windows 10
  • ImageMagick-7.0.10-21

ソースコード

implementation 'org.im4java:im4java:1.4.0'
import java.io.IOException;

import org.im4java.core.IM4JavaException;
import org.im4java.core.IMOperation;
import org.im4java.core.ImageMagickCmd;

public class ImageMagickMain {
	public static void main(String[] args) throws IOException, InterruptedException, IM4JavaException {
		ImageMagickCmd magick = new ImageMagickCmd("magick");
		IMOperation operation = new IMOperation();
		operation.addImage("src.png");
		operation.resize(300, 300);
		operation.addImage("dest.png");
		
		System.out.println(operation.getCmdArgs());
		magick.run(operation);
	}
}

7以前との注意点

詳細はぐぐると出てくるが、7からモジュール名がconvertからmagickに変更されている。具体的にwindowsでいうとconvert.exeからmagick.exeになっている。そのため7では、new ImageMagickCmdの引数のImageMagickのモジュール名はmagickの必要がある。既存資料を参考にする場合はその点に注意が必要。

ただし、引き続きconvertも使用可能。その場合はインストール時に下記のようにInstall legacy utilitiesにチェックが必要。これにチェックするとconvert.exeもインストールされる。

Untitled.png
1
1
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
1
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?