Upgrade Server To Use Imagick Instead Of Gd?

I am in the process of recompiling PHP on my server and looking at the option of changing from GD extension to Imagick for image processing. Am i going to run into issues if I do this? Or, better to stick with GD? I noticed there were a number of issues posted with Imagick maybe 1-1/2 years ago.

CS-Cart 4.7.3

Server running CentOS 7, EasyApache 4, PHP 7.0.8, Apache 2.4, MySQL 5.6

Do you work within the command line or have control panel that you use? We, my wife and I use Cpanel and within WHM we have gone for Imagick. Also running EA4, PHP 7.0, Apache and Engintron Nginx, MariaDB.
Looking at your config I think you use Cpanel as well.

I am in the process of recompiling PHP on my server and looking at the option of changing from GD extension to Imagick for image processing.


We recommend using Imagick over GD. It offers better performance and stability (especially if thumbnails need to be generated from large images) and a better quality of processed images. As for the problems you mentioned, are you referring to security issues? If so, please check this part of our docs, it may help.

Yes, I use CPanel on my servers... I am mostly interested in the stability first and then the other advantages over GD. I will carefully read CS-Cart's documents pertaining to security. Thank you very much for your responses :)

The main advantage I guess is that images simply look better (more vibrant) with imagick.

once you install imagick , how do you make cscart use it ? my thumbnail quality is really bad

You should not do nothing if the config.local.php file has the following line

'image_resize_lib' => 'auto',

Also you can try to change it to

'image_resize_lib' => 'imagick',