Failed to install GraphicsMagick and ImageMagick

On my ubuntu server, I have two applications: one uses GraphicsMagick, and one uses ImageMagick, but I can not install GraphicsMagick and ImageMagick when I install it, and then replaces / usr / bin / convert and the convert command points to only one. is there a way to save both types convert1 and convert2?

+4
source share
1 answer

ImageMagick is installed in /usr/bin/convert. GraphicsMagick set to /usr/bin/gm.

To use converta Graphic Magick, use /usr/bin/gm convert, or simply: gm convert.

For ImageMagick, use as usual convert.

+7

All Articles