cnk
cnk

Reputation: 49

Converting Microsoft Office documents and PDF documents to image file with Java

In my current project, I need to convert Microsoft Office documents and PDF documents to image file with Java. Is there any open source Java library for that. And if so, which is the most reliable?

Upvotes: 2

Views: 2127

Answers (3)

Abhishek
Abhishek

Reputation: 1261

You can also use docx4j to convert the Office Docs to PDF.

Upvotes: 0

nidhin
nidhin

Reputation: 6920

You can use Apache PDFBox for PDF and Apache POI for converting Microsoft office documents.

Apache PDFBox Apache POI

Upvotes: 0

ayush
ayush

Reputation: 14568

you can try using JODConverter .

It is a open source project. The Java OpenDocument Converter, converts documents between different office formats.

Picked from here

Upvotes: 1

Related Questions