📄 pptxgenjs.md

← Vault

PptxGenJS Tutorial

Setup & Basic Structure

`javascript

const pptxgen = require("pptxgenjs");

let pres = new pptxgen();

pres.layout = 'LAYOUT_16x9'; // or 'LAYOUT_16x10', 'LAYOUT_4x3', 'LAYOUT_WIDE'

pres.author = 'Your Name';

pres.title = 'Presentation Title';

let slide = pres.addSlide();

slide.addText("Hello World!", { x: 0.5, y: 0.5, fontSize: 36, color: "363636" });

pres.writeFile({ fileName: "Presentation.pptx" });

`

Layout Dimensions

Slide dimensions (coordinates in inches):