我正在尝试获取存储在Web服务器上的图像,并能够为其添加超链接,从而将您带回到首页。这是来自pallyly文档的示例,该示例说明了如何向图形添加图像:
fig.add_layout_image(
dict(
source="https://images.plot.ly/language-icons/api-home/python-logo.png",
xref="x",
yref="y",
x=0,
y=3,
sizex=2,
sizey=2,
sizing="stretch",
opacity=0.5,
layer="below")
)