我有一个散点图框图,其中包含使用plotly.express创建的滑块。我想知道是否可以将图形导出为GIF,以便可以在另一个文档上使用该地图?
谢谢!
import pandas as pd
import numpy as np
import plotly.express as px
import os
from PIL import Image
if not os.path.exists("images"):
os.mkdir("images")
df= pd.DataFrame(np.arange(100).reshape(50, 2), columns=["x", "y"])
fig = px.scatter(df, x="x", y="y")
fig.write_image("images/fig1.png")
im = Image.open("images/fig1.png")
bg = Image.new("RGB", im.size, (255,255,255))
bg.paste(im,im)
bg.save("images/fig1.gif")