ImageMagick deployment

Questions and postings pertaining to the usage of ImageMagick regardless of the interface. This includes the command-line utilities, as well as the C and C++ APIs. Usage questions are like "How do I use ImageMagick to create drop shadows?".
Post Reply
ixSci
Posts: 3
Joined: 2013-04-13T21:46:41-07:00
Authentication code: 6789

ImageMagick deployment

Post by ixSci »

Hi there,

I'm trying to deploy ImageMagick with my own software. On windows I've just included all the core dlls with coders dlls at the exe path and it works well.
But on mac os I have troubles with coders. I installed ImageMagick via macports and found it with the help of CMake. CMake does all the job of copying and fixing up all the core libs I've linked against. Then I copied all the coder libs and fixed them up also, but when I start my appllication it just can't find any coder. So I'd like to know what am I missing there. Note: if I didn't fix up any paths it works well. It is only my deployment that is in trouble.
P.S. I have all ImageMagick libs including coders SOs near the executable in MacOS bundle sub-folder.
ixSci
Posts: 3
Joined: 2013-04-13T21:46:41-07:00
Authentication code: 6789

Re: ImageMagick deployment

Post by ixSci »

If no one knows how to deploy it on mac maybe someone knows how to check what paths it searches for the coders?
What should I pass to InitializeMagick(...) to see what paths it probes for the coders?
User avatar
fmw42
Posts: 25562
Joined: 2007-07-02T17:14:51-07:00
Authentication code: 1152
Location: Sunnyvale, California, USA

Re: ImageMagick deployment

Post by fmw42 »

I am no expert on this, but perhaps this page will help. see http://www.imagemagick.org/script/resources.php#modules
ixSci
Posts: 3
Joined: 2013-04-13T21:46:41-07:00
Authentication code: 6789

Re: ImageMagick deployment

Post by ixSci »

fmw42, thank you it helped. Posted full solution on SO
Post Reply