Skip to content

Latest commit

 

History

History
68 lines (51 loc) · 3.79 KB

File metadata and controls

68 lines (51 loc) · 3.79 KB

Document Conversion API for Node.js

GitHub release (latest by date) GitHub

GroupDocs.Conversion for Node.js via Java is a Document Conversion Library designed to convert back and forth between over 50 types of documents and images, including all Microsoft Office and OpenDocument file formats, PDF documents, HTML, CAD, raster images (TIFF, JPEG, GIF, PNG, BMP) and more.

Directory Description
Docs Product documentation containing the Developer's Guide, Release Notes and more.
Examples Node.js examples and sample documents for you to get started quickly.

Universal Document Converter

  • Convert whole document to desired target format.
  • Convert specific document page(s) or page ranges.
  • Auto-detect source document format on the fly without requiring the file extension.
  • Obtain a list of all supported conversion formats.
  • Replace missing fonts.
  • Add text or image watermarks to any page.
  • Extract document's basic information.
  • Load source document with extended options;

Get Started with GroupDocs.Conversion for Node.js via Java

GroupDocs.Conversion for Node.js via Java requires J2SE 7.0 (1.7), J2SE 8.0 (1.8) or above. Please install Java first if you do not have it already.

Install the project dependencies:

npm install

or manually install the following NPM package:

Convert DOCX to PDF

const converter = new groupdocs.conversion.Converter(inputFilePath)
const options = new groupdocs.conversion.PdfConvertOptions()
converter.convert("output.pdf", options)

Convert PDF to DOCX

const converter = new groupdocs.conversion.Converter("sample.pdf")
const options = new groupdocs.conversion.WordProcessingConvertOptions()
converter.convert("output.docx", options)

Convert Word to Presentation

const converter = new groupdocs.conversion.Converter(inputFilePath)
const options = new groupdocs.conversion.PresentationConvertOptions()
converter.convert("output.pptx", options)

Home | Product Page | Documentation | Demos | API Reference | Examples | Blog | Free Support | Temporary License