Did you find this guide helpful?
Some test text!
Java / Guides
To convert PDF Documents to Word format.
Convert.WordOutputOptions wordOutputOptions = new Convert.WordOutputOptions();
// Optionally convert only the first page
wordOutputOptions.setPages(1, 1);
// Requires the Structured Output module
Convert.toWord(filename, output_filename, wordOutputOptions);
To convert PDF Documents to Excel format.
Convert.ExcelOutputOptions excelOutputOptions = new Convert.ExcelOutputOptions();
// Optionally convert only the first page
excelOutputOptions.setPages(1, 1);
// Requires the Structured Output module
Convert.toExcel(filename, output_filename, excelOutputOptions);
To convert PDF Documents to PowerPoint format.
Convert.PowerPointOutputOptions powerPointOutputOptions = new Convert.PowerPointOutputOptions();
// Optionally convert only the first page
powerPointOutputOptions.setPages(1, 1);
// Requires the Structured Output module
Convert.toPowerPoint(filename, output_filename, powerPointOutputOptions);
Convert PDF to Office
Full sample code which shows how to convert generic PDF documents to Word, Excel, PowerPoint format
Get the answers you need: Chat with us