I am trying to get the JMagick library working under Tomcat to do some image translation following an upload.
Magic comes as a semi-stub library.jar archive and a native library
libJMagick.so . I have used
System. LoadLibrary ("JMagick");
,
but I get errors in the catalina.out
complaining about being unable to find
the library (details at the end of this message). the key clause being:
Caused by: java.lang.RuntimeException: Can't load MagickLoader (class not found) at magick.Magick.(Magick.java:25)
So where should I put the libraries, currently they are in WEB-INF/lib so that tomcat can use them