Python有点新鲜。尝试PyPNG(需要编写一些简单的PNG文件)。完全按照the documentation中的示例使用代码(几乎)。
import png
def main():
f = open('ramp.png', 'wb') # binary mode is important
w = png.Writer(255, 1, greyscale=True)
w.write(f, [range(256)])
f.close()
if __name__ == "__main__":
main()
尝试完全按照文档中的说明运行(没有添加main())。
当我跑步时,我收到错误:
AttributeError: 'module' object has no attribute 'Writer'
谷歌和SO什么都不提供。请帮帮忙?