Last active
February 22, 2025 07:49
Revisions
-
groupdocs-com-kb revised this gist
Feb 22, 2025 . No changes.There are no files selected for viewing
-
groupdocs-com-kb created this gist
Feb 18, 2025 .There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,16 @@ const conversion = require('@groupdocs/groupdocs.conversion') const licensePath = "GroupDocs.Search.lic"; const license = new conversion.License() license.setLicense(licensePath); // Load the input PDF file const converter = new conversion.Converter("sample.pdf"); const options = new conversion.PresentationConvertOptions(); options.setFormat(conversion.PresentationFileType.Pptx); // Save output PPTX to disk converter.convert("output.pptx", options); process.exit(0);