I am trying to add the same image multiple times into an excel file using EPPlus. I am using the following code to do so:
Image logo = Image.FromFile(path);
Add the following right before you save the document:
foreach (ExcelPicture drawing in ws.Drawings) drawing.SetSize(100);