So I've cloned the repo (https://github.com/techblue/jmagick), built, and copied the resulting two files to a directory:
/path/to/project/lib/jmagick-6.7.7.jar
/path/to/project/lib/libJMagick-6.7.7.so
I've also installed the latest ImageMagick, and since I'm on OSX, I did so with:
brew install imagemagick
I have version: imagemagick-6.9.3-6
When I run my application and first try to instantiate an ImageInfo object, I get the following exception:
java.lang.UnsatisfiedLinkError: no JMagick in java.library.path
And just a little more information, I built the code in the repository following the docker instructions, so it built in ubuntu. I don't know if that's a problem. I am not getting a class not found exception so I have to assume the jar is fine. My java.library.path looks like this:
"java.library.path" -> "/path/to/project/lib"
I'm about out of ideas and hair.