对 Python 有点陌生。试用 PyPNG(需要编写一些简单的 PNG 文件)。(几乎)完全按照文档中的示例使用代码。
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 什么都不提供。请帮忙?