mini_magick gem doesn't work with my ImageMagick install

后端 未结 3 1130
慢半拍i
慢半拍i 2021-01-14 23:30

I have the ImageMagick installed via MacPorts and the mini_magick gem and I get an error for the following script. How can I resolve this problem?

require \'         


        
3条回答
  •  渐次进展
    2021-01-15 00:07

    Try reinstall ImageMagick, if you use Mac OS X:

    brew uninstall imagemagick jpeg libtiff jasper
    brew install imagemagick
    

    For check if JPG format is now available:

    identify -list format | grep JPG
    

    This will return the available formats JPG...

提交回复
热议问题