import cairosvg
output = open('output.png', 'w')
svg_code = """<?xml version="1.0" standalone="no"?>
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN"
"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
<svg width="100%" height="100%" version="1.1"
xmlns="http://www.w3.org/2000/svg">
<rect width="300" height="100"
style="fill:rgb(0,0,255);stroke-width:1;
stroke:rgb(0,0,0)"/>
</svg>
"""
cairosvg.svg2png(bytestring=svg_code, write_to=output)
output.close()
运行后报错:'module' object has no attribute 'ANTIALIAS_FAST'
以上代码,cairosvg正常安装,也有ANTIALIAS_FAST,为什么控制台还是报这个错?
再次更新问题,看了下http://cairosvg.org/,说是3.4+的库,所以安装了python3.5.2。
运行后,依然提示AttributeError: module 'cairo' has no attribute 'ANTIALIAS_FAST'
本地环境测试了下,排除python版本库的原因。
安装步骤及顺序无误的情况下,安装了GTK2 runtime后,重启pycharm就可以正常使用了