ts_ppt_text
v1.3.1
Published
A simple TypeScript library for interfacing with PPT text nodes
Downloads
4
Readme
ts_ppt_text
TypeScript PowerPoint Text is a library which allows for the modification of text entries within PowerPoint (.pptx, .ppt) files.
Usage Example
const presentation = new Presentation(
path.join(__dirname, '../example.pptx'),
path.join(__dirname, '../output/')
)
const slides = await presentation.getSlides()
slides.forEach((slide) => console.log(slide.textNodes))
slides.forEach((slide) => slide.editTextNode(1, 'new text'))