Convert PNG to Excel

Convert PNG to Excel in Java

If you need to get data from your previous tax returns or any other image statistical data into Excel and you only have printed copies just scan that documents and save them in PNG format or take a picture of each one and convert these images into XLS/XLSX workbook.

// Load the source PNG  file
Converter converter = new Converter("sample.png");
SpreadsheetConvertOptions options = new SpreadsheetConvertOptions();
// Save converted XLS file
converter.convert("png-converted-to.xlsx", options);