Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Not able to install both GraphicsMagick and ImageMagick

In my ubuntu server I have two apps, one is using GraphicsMagick and one is using ImageMagick but I am not able to install both GraphicsMagick and ImageMagick, when I am installing one then it is replacing the /usr/bin/convert and the convert command is pointing to only one, is there a way to keep both like convert1 and convert2?

like image 916
Saurabh Udaniya Avatar asked Mar 15 '23 12:03

Saurabh Udaniya


1 Answers

ImageMagick installs in /usr/bin/convert. GraphicsMagick is installed in /usr/bin/gm.

In order to use convert with Graphic Magick use /usr/bin/gm convert or simply: gm convert.

For ImageMagick use, as usual, convert.

like image 81
Amir sayyad Avatar answered Mar 18 '23 02:03

Amir sayyad