我在 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()
但只有当我在 Pyramid 中跑步时才会发生这种情况。当我只是在一个简单的 python .py 中运行它时,它工作正常。有任何想法吗?
该示例可以在这里看到