分段故障在Pyramid项目中运行Wand示例

时间:2012-01-19 12:40:26

标签: image-processing imagemagick segmentation-fault pyramid magickwand

我在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

0 个答案:

没有答案