html_str += '<tr><td>{}</td><td><img src="{}"/></td></tr>'.format(ai_te, snap_url) 调整图片大小
时间: 2023-07-09 09:10:51 浏览: 149
调整图片大小
好的,您可以使用`style`属性来调整图片的大小。以下是修改后的代码:
```python
import pandas as pd
import requests
from IPython.display import HTML, display
# 假设您的DataFrame为df
html_str = '<table>'
for index, row in df.iterrows():
snap_url = row['snap_url']
ai_te = row['ai_te']
try:
response = requests.get(snap_url)
html_str += '<tr><td>{}</td><td><img src="{}" style="max-width: 200px; max-height: 200px;"/></td></tr>'.format(ai_te, snap_url)
except:
pass
html_str += '</table>'
with open('output.html', 'w') as f:
f.write(html_str)
display(HTML(html_str))
```
在这里,我使用了`style`属性来限制图片的最大宽度和高度为200像素。您可以根据需要调整这些值。
阅读全文