-
Notifications
You must be signed in to change notification settings - Fork 735
Closed
Description
Tried the Ppt generation into the angular 4 project by installing through node js like below
npm install pptxgenjs
var pptx = require("pptxgenjs");
but call to the ppt generation function not giving any response
generatePPT() {
var pptx = new pptx();
var slide = pptx.addNewSlide();
var opts = { x: 1.0, y: 1.0, font_size: 42, color: '00FF00' };
slide.addText('Hello World!', opts);
pptx.save();
}