如何在绘图破折号中更改图像大小

时间:2019-10-21 09:16:57

标签: python python-3.x image dashboard 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%'})

任何建议

1 个答案:

答案 0 :(得分:1)

style内移动Img属性:

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

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