1

So i have these ExcelPictures that i want to save to a Specfic path.

                ExcelPicture picture = sheet.Pictures[minIndex];
                

1 Answers1

1

To save the ExcelPicture object to a specific path, you can use:

picture.Picture.Save(@"ImagePath", ImageFormat.Png);

Dheeraj Malik
  • 703
  • 1
  • 4
  • 8