Browse Source

Update README.md

懒得勤快 4 years ago
parent
commit
895a20b27e
1 changed files with 2 additions and 0 deletions
  1. 2 0
      README.md

+ 2 - 0
README.md

@@ -711,6 +711,8 @@ var stream=list.Select(item=>new{
     item.Gender,
     Avatar=Image.FromStream(filestream) //图片列
 }).ToDataTable().ToExcel("Sheet1"); //自定义列名导出
+// 图片列支持Stream、Bitmap、IEnumerable<Stream>、IEnumerable<Bitmap>、IDictionary<string,Stream>、IDictionary<string,MemoryStream>、IDictionary<string,Bitmap>类型;
+// 其中,如果是IDictionary类型的图片列,字典的键为图片超链接的完整url
 var stream=list.ToDataTable().ToExcel("Sheet1");//默认字段名作为列名导出
 ```