1.0.0 • Published 6 years ago

node-pptx-generator v1.0.0

Weekly downloads
6
License
-
Repository
-
Last release
6 years ago

node-pptx-generator

node-pptx-generator npm module used to generate pptx along with the features of text add, image add, read existing template.

Using open source pptxgenjs plugin with some customization

Installation

npm i node-pptx-generator --save

TEXT OPTIONS

 x ( x position)
 y ( y position)
 align
 font_size
 color
 w (width)
 h (height)
 autoFit

IMAGE OPTIONS

 path : Image Path
 x (x position)
 y (y position)
 w (width)
 h (height)

Sample

var NODE_PPTX_GENERATOR = require('node-pptx-generator');

NODE_PPTX_GENERATOR.createPresentation("/tmp/test-template.pptx").then(function(presentation){
    var slide = NODE_PPTX_GENERATOR.addNewSlide();
    NODE_PPTX_GENERATOR.addText(slide, "Hello World !!", { x:1, y:3, align:'c', font_size:40, color:'ffffff',w: 9.0,h:0.5,autoFit:true});

    var slide1 = NODE_PPTX_GENERATOR.addNewSlide();
    NODE_PPTX_GENERATOR.addText(slide1, "Hello World1 !!", { x:0.5, y:0.5, align:'c', font_size:20, color:'ffffff',w: 9.0,h:0.5,autoFit:true});
    NODE_PPTX_GENERATOR.addImage(slide1, { path: './media/image4.jpeg', x:3.0, y:1.5, w:3, h:3});

    var slide2 = NODE_PPTX_GENERATOR.addNewSlide();
    NODE_PPTX_GENERATOR.addText(slide2, "Hello World3 !!", { x:1, y:3, align:'c', font_size:40, color:'ffffff',w: 9.0,h:0.5,autoFit:true});

    NODE_PPTX_GENERATOR.generate("/tmp/test.pptx");
    res.send('Done !!')
});