Page 1 of 1

Running Imagemagick over continuous Integration tool

Posted: 2014-08-28T10:52:37-07:00
by aryan05
Hi,
I am planning to integrate Imagemagick into Jenkins CI tool. I was able to download Imagicmagick windows version & integrate it with my eclipse and write code around that, to compare two images to find the differences.
Since my CI runs on remote Linux boxes, i wanted to check how to achieve the same for linux version without much fuss.
I tried downloading linux version of the imagemagick, but wasnt successful, as its executed on remote machine, throwing permission issues(which i resolved adding chmod using java runtime execution), but i read somewhere that we need to set PATH!!, which i wasnt able to achieve.

But after providing permission to run, I'm getting the following error - ./ImageMagick-6.3.7/bin/compare: error while loading shared libraries: libMagick.so.10: cannot open shared object file: No such file or directory

Do we have ready to use linux bundle of Imagemagick (similar to windows one), without me installing/configuring the downloaded package.

Thanks

Re: Running Imagemagick over continuous Integration tool

Posted: 2014-08-28T11:27:55-07:00
by snibgo
ImageMagick-6.3.7
That is very old. Prehistoric. I suggest you install the current version, perhaps by following instructions at http://www.imagemagick.org/script/insta ... e.php#unix

I know nothing about running IM remotely.

Re: Running Imagemagick over continuous Integration tool

Posted: 2014-08-28T15:14:04-07:00
by aryan05
Hi,
I would appreciate if someonce can guide me in getting ImageMagick as linux package without me installing it, as i do not have root privileges to install on linux machine - ImageMagick-6.8.9-7.x86_64.rpm

I would want to use this tool without installing nor exporting lib to the PATH , as i want to use this in automating image comparison on Remote Virtual machines.!!
Each time i cannot install these packages on virtual machines to automate my process.
Any Help would be appreciated.