im4java читать изображение

Я попытался прочитать изображение на Java с помощью библиотеки im4java:

File file = new File("img\\test.jpg");
Info imageInfo = new Info(file.getPath(),true);

Проблема в том, что Info() не распознает изображение. Исключение называется:

Exception in thread "main" org.im4java.core.InfoException: org.im4java.core.CommandException:      java.io.IOException: Cannot run program "identify": CreateProcess error=2, The sistem can not find the specific file.
at org.im4java.core.Info.getBaseInfo(Info.java:360)
at org.im4java.core.Info.<init>(Info.java:151)
at FeatureExtractor.main(FeatureExtractor.java:51)

В маршруте я попытался поставить полный маршрут, но он не работает. Затем я попытался сделать это с помощью команды и операции, и не работает:

    // create command
ConvertCmd cmd = new ConvertCmd();
//cmd.setSearchPath("img");

// create the operation, add images and operators/options
IMOperation op = new IMOperation();
op.addImage("img\\test.jpg");

Ошибка:

org.im4java.core.CommandException: org.im4java.core.CommandException: Specification not valid.
at org.im4java.core.ImageCommand.run(ImageCommand.java:219)
at FeatureExtractor.main(FeatureExtractor.java:28)

1 ответ

Вы можете установить путь поиска для установки ImageMagick и попробовать: ProcessStarter.setGlobalSearchPath("$PATH:<>");

Другие вопросы по тегам