Python/Plotly 离线导出结果到图像而不是 html 文件

Python/Plotly Offline export result into Image instead of html file

如何将我的 PLOTLY 结果离线导出到 Image(png、jpeg、jpg)或 pdf 而不是 html格式?

filename="test.html"
plotly.offline.plot(fig, filename=filename,show_link=False,auto_open=False)

如果没有直接的解决方案,我怎样才能将这个 html 的结果转换成 ppt/pdf/image 呢?

您可以使用以下方法创建 static export

fig.write_image("my_fig.png")