2021-09-18
程序员文章站
2024-01-18 19:19:04
...
将plotly绘制的html图形转成静态图包
首先说一下遇到的问题,网上讲授了许多下载包和js的插件,不仅效果不好,还浪费时间。今晚解决了之后,分享给大家。
下面是我写的代码:
报错,遇到的问题:
plotlyjs argument is not a valid URL or file path:
****解决方法****
不需要下载什么request、orca,仅仅下载一个 kaleido包即可
首先进行绘图,这里不多说啦,网上很多教怎么绘图的。
1.绘图所需的包
```python
import plotly
import plotly.graph_objs as go
2.绘图完成后,安装一个包:
from kaleido.scopes.plotly import PlotlyScope
3.保存静态图, 使用如下语句:
if not os.path.exists('images'):
os.mkdir('images')
scope = PlotlyScope()
with open("./images/figure.svg", "wb") as f: # 在本地目录下面就会生成文件
f.write(scope.transform(fig, format="svg"))
就可以在本项目的images文件夹中看到你保存的图片啦
有条件的可以看看这篇文章
https://plotly.com/python/static-image-export/
国内:
https://www.jianshu.com/p/7d736d053753
上一篇: java 类属性和局部变量
推荐阅读