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.
我正在尝试使用matplotlib将一些数组保存为 TIFF ,但我得到的是 24 位 RGB 文件而不是plt.imsave().
plt.imsave()
我可以在不诉诸 PIL 的情况下更改它吗?将所有内容保存在纯 matplotlib 中对我来说非常重要。
无论如何,使用 matplotlib 导出到 TIFF 将使用 PIL。据我所知,matplotlib 仅支持 PNG,并使用 PIL 转换为其他文件格式。所以当你使用 matplotlib 导出到 TIFF 时,你可以立即使用 PIL。