如何在 plotly dash 中更改图像大小

How to change image size in plotly dash

如何更改图片大小?我使用下面的代码行来插入我的图像,但我似乎无法弄清楚你是如何让它变小的

html.Div(html.Img(src=app.get_asset_url('logo.png')))

我试过:

html.Div(html.Img(src=app.get_asset_url('logo.png')),style={'height':'10%'})

任何建议

将您的 style 属性移到 Img:

html.Div(html.Img(src=app.get_asset_url('logo.png'), style={'height':'10%', 'width':'10%'}))

可能 width 是多余的,但我不确定。