如何使用Python将png并排放到HTML表中

时间:2017-05-09 21:06:42

标签: python pandas matplotlib

我有一个matplotlib图转换为png:

enter image description here

figure_new.savefig('figure_new.png', bbox_inches='tight', pad_inches=0

以及呈现为html表格的样式对象report_newenter image description here

report_html=fo.write(plunge_results[_j].report_new.render())

我使用以下代码将styler作为HTML表格并将png图像放在HTML文件中:

data_uri = base64.b64encode(open('figure_new.png', 'rb').read()).decode('utf-8').replace('\n', '')

img_tag = '<img src="data:image/png;base64,{0}">'.format(data_uri)

with open('report_new.html','w') as fo :
    report_html=fo.write(plunge_results[_j].report_new.render())
    report_html=fo.write(img_tag)

结果包含一个html表,下面有一个图像,我需要的是:

将png图像并排放在html表格的相同长度或插入图像作为HTML表格的列,如下所示:

enter image description here

0 个答案:

没有答案