简体   繁体   中英

I have install ImageMagick still i face error in image library

I want to use imageMagick for image processing. Now i have install ImageMagick ImageMagick-6.8.4-10-Q16-x64-dll.exe. but still I face error ="Image processing failed. Please verify that your server supports the chosen protocol and that the path to your image library is correct." My code is -

$config = array();
$config['image_library'] = 'ImageMagick';
$config['source_image'] = $file;
$config['new_image'] =  $file;
$config['library_path'] = '/usr/local/bin';
$config['create_thumb']    = FALSE;
$config['maintain_ratio'] = TRUE;
$config['width']     = 50;
$config['height']   = 50;
$this->image_lib->initialize($config); 
 if ( !$this->image_lib->resize())
        {
            echo "resize -".$this->image_lib->display_errors();
        } 
        $this->image_lib->clear();

Please help me. thanks in advanced.

Wait. I assumed you are using Windows (as you installed .exe ), but your path is a Linux path ( /usr/local/bin ). Double check your installation path.

Below has given me expected result. Hope you will also get same.

    $this->load->library('image_lib');

    //For resizing of image in size of dilog
    $config['image_library']  = 'ImageMagick';
    $config['library_path'] = 'C:\\ImageMagick\\';

    $config['source_image'] = $source_filepath;
    $config['new_image'] = $new_filepath;

    $config['width'] = 128;
    $config['height'] = 128;
    $config['quality'] = '100%';
    $config['maintain_ratio'] = TRUE;

    $this->image_lib->initialize($config);

    if (! $this->image_lib->resize()) {
        $error_msg = $this->image_lib->display_errors();
        print_r($error_msg);
    }
    else {
        echo "Done";
    }

Here

$config['library_path'] = 'C:\\ImageMagick\\'; 

is the path for windows where your imageMagick application is installed.(Try to install in such a folder to which we can easily fingd the path upto it). Change the image library to :

$config['image_library']  = 'ImageMagick';

& other all configuration is remains same.

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM