i have a controller in codeigniter that uploads images. Now for processing and cropping i use ImageMagick. I installed imageMagick on my mac and it works fine but i now i want it on my webserver. How can i install or what path do i need to use to get it working online? what i already tried is to put the map with the bin files on my server and locate the library path to it. But without success. Thanks.
Offline
$config['image_library'] = 'ImageMagick';
$config['library_path'] = 'opt/ImageMagick/bin/convert';
$config['source_image'] = $upload_data['full_path'];
$config['new_image'] = $gallery_path . '/thumbs';
$config['create_thumb'] = FALSE;
$config['maintain_ratio'] = TRUE;
$config['width'] = 350;
$config['height'] = 300;