Convert JPG to Excel

Convert JPG 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 or take a picture of each one and convert these images into XLS/XLSX workbook.

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