我在Wand 0.1.9中运行示例时遇到分段错误:
from urllib2 import urlopen
from wand.image import Image
response = urlopen('https://stylesha.re/minhee/29998/images/100x100')
try:
with Image(file=response) as img:
print 'format =', img.format
print 'size =', img.size
finally:
response.close()
但只有当我在金字塔中运行时才会发生这种情况。当我在一个简单的python .py中运行它时,它工作正常。 有什么想法吗?
可以看到示例here