Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我生成一个常规列表。是否可以将此列表保存为 JPEG 图像或 PNG 或其他任何内容,以便我可以打开图像并查看它?我目前正在尝试使用 python 成像库(PIL)来解决这个问题。
这是可能的解决方案之一:
使用以下方法创建一个空图像对象:Image.new(mode, size, color)
修改图像对象以包含“列表”中的数据
保存图像
例如:
new_img = Image.new("L", (NEW_X_SIZE, NEW_Y_SIZE), "white") new_img.putdata(new_img_list) new_img.save('out.tif')