Skip to content
This repository has been archived by the owner on Oct 19, 2020. It is now read-only.
/ DocxToPdf Public archive

A basic Docx to PDF converter. Supports text, tables (without formatting) and images. It's based on Apache POI (XWPF).

License

Notifications You must be signed in to change notification settings

e-reznik/DocxToPdf

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

33 Commits
 
 
 
 
 
 
 
 

Repository files navigation

Example usage

String docIn = "myDoc.docx";
String docOut = "myPdf.pdf";

Converter c = new Converter();
c.convert(docIn, docOut);

Supported elements

  • text
  • images
  • tables
    • text formatting
  • headings
  • basic shapes

Supported text formatting

  • bold
  • italic
  • colors

Dependencies

Dependency Version Description
Apache POI 4.1.2 Accessing Docx with XWPF
iText 7 7.1.12 Generating PDF

About

A basic Docx to PDF converter. Supports text, tables (without formatting) and images. It's based on Apache POI (XWPF).

Topics

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages