CodeIgniter Forums
Codeigniter, XAMPP, ImageMagick... and Mac OS X 10.6.6 - Printable Version

+- CodeIgniter Forums (https://forum.codeigniter.com)
+-- Forum: Archived Discussions (https://forum.codeigniter.com/forumdisplay.php?fid=20)
+--- Forum: Archived General Discussion (https://forum.codeigniter.com/forumdisplay.php?fid=21)
+--- Thread: Codeigniter, XAMPP, ImageMagick... and Mac OS X 10.6.6 (/showthread.php?tid=42912)



Codeigniter, XAMPP, ImageMagick... and Mac OS X 10.6.6 - El Forum - 06-23-2011

[eluser]warpspasm[/eluser]
Hello Everyone,

I have a fully functional version of Codeigniter and XAMPP on my Mac. I installed ImageMagick from http://www.imagemagick.org/script/binary-releases.php#macosx to the directory /Applications/XAMPP/xamppfiles/imagic/ImageMagick-6.6.9

Using the command line I set the following environment variables:

export MAGICK_HOME="/Applications/XAMPP/xamppfiles/imagic/ImageMagick-6.6.9/"
export PATH="$MAGICK_HOME/bin:$PATH"
export DYLD_LIBRARY_PATH="$MAGICK_HOME/lib/"

Then I tested the installation with:

$magick> convert logo: logo.gif
$magick> identify logo.gif

And everything worked fine!

But I just can't get it to work from Codeigniter's Image Manipulation Class $this->load->library('image_lib');

I have set the following in the config array:

$config = array(
'image_library' => 'imagemagick',
'library_path' => '/Applications/XAMPP/xamppfiles/imagic/ImageMagick-6.6.9/bin',
...etc

But I always get the same error when trying to run the function:

Image processing failed. Please verify that your server supports the chosen protocol and that the path to your image library is correct.

Does anyone have any ideas where I can start looking to find the reason why it is not working, I was suspecting maybe something needs to be in php.ini, but I am not sure!

Thanks


Codeigniter, XAMPP, ImageMagick... and Mac OS X 10.6.6 - El Forum - 06-23-2011

[eluser]toopay[/eluser]
You should provides a wrapper to the ImageMagick library like these one first, didnt you?


Codeigniter, XAMPP, ImageMagick... and Mac OS X 10.6.6 - El Forum - 06-23-2011

[eluser]warpspasm[/eluser]
Hi toopay,

Thanks for the quick answer. No, I didn't setup a wrapper - didn't know that I was supposed to set one up.

Does anyone know how to correctly configure the wrapper?

Thanks!