PPTX file can't fully converted in PDF

I am trying to convert from ppt to Pdf, But whole file can’t be converted into Pdf, its convert only partially.

I am using following code to convert and save ppt file to pdf.
Presentation pre = new Presentation(PptFilePath);
pre.Save(PdfFilePath, Aspose.Slides.Export.SaveFormat.Pdf);

Please download both file from following link :

  • Converted Pdf File
  • Original Ppt file:

https://firebasestorage.googleapis.com/v0/b/es6app.appspot.com/o/14774.pptx?alt=media&token=ff04dd3c-a4a4-455d-aa90-55ca5f2ec071

Please give me proper solution for fully convert ppt file to pdf.

@jigsk,

I have worked with the presentation file shared by you using Aspose.Slides for .NET 17.12.1 on my end and have not been able to observe the issue. I suggest you to please try using the specified version on your end. For your kind reference, I have shared the generated PDF as well.

14774.pptx.pdf (106.8 KB)

Footer part is missing from Pdf.

image.png (32.8 KB)

@jigsk,
To include notes when exporting presentation to PDF document, you need to specify an appropriate option as shown below:

PdfOptions pdfOptions = new PdfOptions();
pdfOptions.NotesCommentsLayouting.NotesPosition = NotesPositions.BottomFull;

using (Presentation presentation = new Presentation("14774.pptx"))
{
    presentation.Save("14774_out.pdf", SaveFormat.Pdf, pdfOptions);
}

Documents: Convert PowerPoint to PDF
API Reference: PdfOptions Class