GetImage() -> System::ArgumentException: Parameter Is Not Valid

I am trying to get image of a shape using:

shape->GetImage();

This code gives exception:

An exception occurred: System::ArgumentException: Parameter is not valid.

Please find attached ppt for which excpetion occurs on shape no. 9
Using aspose slides for c++ 24.5 version

Social Issues Thesis_ Climate Change XL by Slidesgo.pptx.zip (344.0 KB)

@pankajku,
Thank you for contacting free support.

Unfortunately, I was unable to reproduce the error you described. I used the following code example:

auto presentation = MakeObject<Presentation>(filePath);
auto slide = presentation->get_Slide(0);
for (int i = 0; i < slide->get_Shapes()->get_Count(); i++) {
    auto shape = slide->get_Shape(i);
    auto image = shape->GetImage();
    image->Dispose();
}
presentation->Dispose();

Please check the problem again carefully.

Please note that slide->get_Shapes()->get_Count() returns 6.