Extract images from Microsoft Office Excel spreadsheets
Extract images from Microsoft Office Excel spreadsheets
Leave feedback
To extract images from Microsoft Office Excel spreadsheets GetImages methods are used. By default images are extracted with its original format. With using ImageOptions class it is possible to extract images from Microsoft Office Excel spreadsheets as bmp, gif, jpeg, png and webp formats.
Warning
GetImagesmethod returns null value if image extraction isn’t supported for the document. For example, image extraction isn’t supported for CSV files. Therefore, for CSV file GetImages method returns null. If Microsoft Office Excel spreadsheet has no images, GetImages method returns an empty collection.
Here are the steps to extract images from Microsoft Office Excel spreadsheet to PNG-files:
Instantiate Parser object for the initial spreadsheet;
Call GetImages method and obtain the collection of image objects;
Iterate through the collection and save image contents to the file.
The following example demonstrates how to extract images from Microsoft Office Excel spreadsheet:
// Create an instance of Parser classusing(Parserparser=newParser(filePath)){// Extract images from spreadsheetIEnumerable<PageImageArea>images=parser.GetImages();// Create the options to save images in PNG formatImageOptionsoptions=newImageOptions(ImageFormat.Png);intimageNumber=0;// Iterate over imagesforeach(PageImageAreaimageinimages){// Save the image to the png fileimage.Save(imageNumber.ToString()+".png",options);imageNumber++;}}
More resources
GitHub examples
You may easily run the code above and see the feature in action in our GitHub examples:
Along with full featured .NET library we provide simple, but powerful free Apps.
You are welcome to parse documents and extract data from PDF, DOC, DOCX, PPT, PPTX, XLS, XLSX, Emails and more with our free online Free Online Document Parser App.
Was this page helpful?
Any additional feedback you'd like to share with us?
Please tell us how we can improve this page.
Thank you for your feedback!
We value your opinion. Your feedback will help us improve our documentation.