我们假设我有一个名为sheet1
的工作表,其中包含一张名为pic_001
的图片。如何将此图片作为System.Drawing.Image
对象获取。
答案 0 :(得分:5)
好的,我发现了如何:
public static Image GetImage(string sheetname, ExcelPackage excelFile)
{
var sheet = excelFile.Workbook.Worksheets[sheetname];
var pic = sheet.Drawings["pic_001"] as ExcelPicture;
return pic.Image;
}
答案 1 :(得分:1)
所有xlsx文件都是zip文件。您可以将.xlsx扩展名复制/重命名为.zip并自行导航文件夹层次结构。导航到xl / media以查看图像。当然有更有效的方法,但这是一个快速而肮脏的解决方案,可以完成工作。
答案 2 :(得分:0)
当我看着myslef使用EPplus从excel表格中提取图像时,偶然发现了这一点。我的要求是获取相应的行/列,以及将图像与我从中读取图像的行相关联。
var workbook = xlPackage.Workbook;
//You can resolve it by worksheet name if you using multiple sheet
ExcelWorksheet ws = workbook.Worksheets[0];
//Create a lookup of drawings per sheet
var lkDrawings = ws.Drawings.ToLookup(x => $"{ x.From.Row}_{x.From.Column}");
//now you can use this lookup while iterating your cells and save it as image.
//You can look at example of iterating epplus cells
//or ping me if you need more details on that.
var lookUpKey = $"{rowCounter}_{col}";
if(lkDrawings.Contains(lookUpKey))
{
ExcelPicture image = lkDrawings[lookUpKey].ToList()[0] as ExcelPicture;
image.Image.Save($"{rowCounter}_{col}.png");
}