Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Imagemagic 7 support? #316

Closed
khakulov opened this issue Jan 16, 2017 · 4 comments
Closed

Imagemagic 7 support? #316

khakulov opened this issue Jan 16, 2017 · 4 comments
Milestone

Comments

@khakulov
Copy link

is Imagemagic 7 supported?

@ghost
Copy link

ghost commented Jan 20, 2017

It looks like no. I got:

Traceback (most recent call last):
  File "/usr/local/lib/python3.6/site-packages/wand/api.py", line 180, in <module>
    libraries = load_library()
  File "/usr/local/lib/python3.6/site-packages/wand/api.py", line 135, in load_library
    raise IOError('cannot find library; tried paths: ' + repr(tried_paths))
OSError: cannot find library; tried paths: []

see #287

@amy-langley
Copy link

amy-langley commented Feb 28, 2017

I don't think that IM7 is supported because it fails to load the MagickWand dylib. After peering into what's going on, it's looking for the file libMagickWand-6Q16.dylib (or Q32 or whatever quantum you installed IM with). I downgraded my ImageMagick with:

$ brew tap homebrew/versions
$ brew install imagemagick@6
echo 'export PATH="/usr/local/opt/imagemagick@6/bin:$PATH"' >> ~/.bash_profile

and then told Wand where to find libmagickwand with:

echo 'export MAGICK_HOME=/usr/local/opt/imagemagick@6' >> ~/.bash_profile

and now my project that I'm using Wand for is failing somewhere else at least!

@ghost
Copy link

ghost commented Sep 8, 2017

In addition to @amyrebecca :

brew install ghostscript

@emcconville emcconville added this to the 0.5.0 milestone Nov 13, 2018
@emcconville
Copy link
Owner

Closing as support for IM has been merged into master branch

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

3 participants