Code Monkey home page Code Monkey logo

Comments (6)

gregdolley avatar gregdolley commented on June 23, 2024 1

@abhiwagh - The reason for this is because you're calling two async functions back-to-back before waiting for the first one to finish. So initially, when PPTX is instantiated, the pptx it has in memory is one with no slides, and when you call removeSlide() (before the load finishes) you're actually removing slide1 from the blank template, not the file you're trying to load (so the exception of "slide1" doesn't exist, is correct at that point in time). Instead, the code should be:

load().then(() => removeSlide());

This ensures your file finishes loading in PPTX's internal structure, before you call removeSlide() on it. Now it won't crash.

from node-pptx.

gregdolley avatar gregdolley commented on June 23, 2024

@abhiwagh I'll take a look.

from node-pptx.

heavysixer avatar heavysixer commented on June 23, 2024

@gregdolley @abhiwagh ok to close this issue?

from node-pptx.

harishankar0301 avatar harishankar0301 commented on June 23, 2024

@abhiwagh Is the size of the presentation decreasing when you remove the slides and save it?

from node-pptx.

abdulloooh avatar abdulloooh commented on June 23, 2024

@abhiwagh - The reason for this is because you're calling two async functions back-to-back before waiting for the first one to finish. So initially, when PPTX is instantiated, the pptx it has in memory is one with no slides, and when you call removeSlide() (before the load finishes) you're actually removing slide1 from the blank template, not the file you're trying to load (so the exception of "slide1" doesn't exist, is correct at that point in time). Instead, the code should be:

load().then(() => removeSlide());

This ensures your file finishes loading in PPTX's internal structure, before you call removeSlide() on it. Now it won't crash.

I followed this same approach and actually waited for the file to be loaded with then but nothing was removed from my file, what could be wrong please, I tried several pptx file but to no avail

from node-pptx.

rajuy5697 avatar rajuy5697 commented on June 23, 2024

const PPTX = require('nodejs-pptx');
let pptx = new PPTX.Composer();

async function load() {
await pptx.load('./Investment.pptx'); // load a pre-existing PPTX
}

async function removeSlide() {
await pptx.compose(pres => {
// pres.removeSlide(pres.getSlide("slide1")); // remove the first slide from the PPTX
pres.removeSlide(pres.getSlide(1));
});
}

load().then(() => removeSlide());

this is my code giving me error

node-pptx\node_modules\nodejs-pptx\lib\factories\doc-props\app.js:42
if (this.content['docProps/app.xml']['Properties']['Slides'] !== undefined) {
^

TypeError: Cannot read properties of undefined (reading 'Properties')

Any idea ?

from node-pptx.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.