DOCX
JPG
PDF
XML
PPT
BMP
Convert PPT to BMP in C++
Convert PPT to BMP using Aspose.Slides for C++ without Microsoft PowerPoint.
Convert PPT to BMP Using C++
Aspose.Slides for C++ is a PowerPoint processing API that lets you convert PPT presentations to BMP in C++ applications without Microsoft PowerPoint. Install the library from NuGet or download it from the Aspose.Slides for C++ releases page .
Command
PM> Install-Package Aspose.Slides.Cpp
How to Convert PPT to BMP via C++
Render a slide from a PPT presentation to BMP with a few lines of C++ code.
- Create a
Presentationinstance from the source PPT file. - Get the first slide from the presentation.
- Set the output image dimensions with
Size. - Call
GetImageto render the slide. - Save the rendered image with
ImageFormat::Bmp.
System Requirements
Before running the C++ conversion example, make sure that the following prerequisites are available.
- Microsoft Windows, Linux, or another compatible OS with the supported C++ runtime.
- Aspose.Slides for C++ referenced in your project.
PPT to BMP C++ Conversion Source Code
auto presentation = MakeObject<Presentation>(u"presentation.ppt");
auto slide = presentation->get_Slide(0);
auto desiredSize = Size(1200, 800);
auto image = slide->GetImage(desiredSize);
image->Save(u"slide.bmp", ImageFormat::Bmp);
image->Dispose();
presentation->Dispose();
Free App to Convert PPT to BMP
Convert presentations and slides online.
Other Supported Conversions
You can also convert PPT into many other file formats including few listed below.
PPT TO EMF (Enhanced Metafile Format)
PPT TO GIF (Graphical Interchange Format)
PPT TO HTML (Hyper Text Markup Language)
PPT TO JPEG (JPEG Image)
PPT TO ODP (OpenDocument Presentation Format)
PPT TO OTP (OpenDocument Standard Format)
PPT TO PDF (Portable Document Format)
PPT TO PNG (Portable Network Graphics)
PPT TO POT (Microsoft PowerPoint Template Files)
PPT TO POTM (Microsoft PowerPoint Template File)
PPT TO POTX (Microsoft PowerPoint Template Presentation)
PPT TO PPS (PowerPoint Slide Show)
PPT TO PPSM (Macro-enabled Slide Show)
PPT TO PPSX (PowerPoint Slide Show)
PPT TO PPTM (Macro-enabled Presentation File)
PPT TO PPTX (Open XML presentation Format)
PPT TO SVG (Scalable Vector Graphics)
PPT TO TIFF (Tagged Image Format)
PPT TO XML (Extensible Markup Language)
PPT TO XPS (XML Paper Specifications)