So i have these ExcelPictures that i want to save to a Specfic path.
ExcelPicture picture = sheet.Pictures[minIndex];
So i have these ExcelPictures that i want to save to a Specfic path.
ExcelPicture picture = sheet.Pictures[minIndex];
To save the ExcelPicture object to a specific path, you can use:
picture.Picture.Save(@"ImagePath", ImageFormat.Png);