Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Every time when I try to run im4java in my java app got this error:

org.im4java.core.CommandException: org.im4java.core.CommandException: dyld: Library not loaded: /ImageMagick-6.7.7/lib/libMagickCore.5.dylib
at org.im4java.core.ImageCommand.run(ImageCommand.java:219)
at Main.main(Main.java:55)
Caused by: org.im4java.core.CommandException: dyld: Library not loaded: /ImageMagick-6.7.7/lib/libMagickCore.5.dylib
at org.im4java.core.ImageCommand.finished(ImageCommand.java:253)
at org.im4java.process.ProcessStarter.run(ProcessStarter.java:314)
at org.im4java.core.ImageCommand.run(ImageCommand.java:215)
... 1 more

My system is Mac OS X Lion 10.7.4 (11E53) and ImageMagic is installed and working properly from command line, but not in Java.

Only thing what I changing is:

String myPath= "**************/ImageMagick/ImageMagick-6.7.7/bin";
ProcessStarter.setGlobalSearchPath(myPath);

Thats why its finding convert, but not library. Don't know what to do...

share|improve this question
never mind, I installed virtual box and switch to Linux. – goodm Jul 5 '12 at 16:33
im4java manual says that you can set the searchpath with a list of paths. Does adding the lib path to the list help? – Yoichi Jul 31 '12 at 1:24
I abandon Mac, but I'm forced to use Windows now, have any idea how to run im4java on Windows machine? – goodm Jul 31 '12 at 9:43

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.