DOCX JPG PDF XML PPTM
  Product Family
JPEG

Convert PPTM to JPEG in C++

Convert PPTM to JPEG using Aspose.Slides for C++ without Microsoft PowerPoint.

Convert PPTM to JPEG Using C++

Aspose.Slides for C++ is a PowerPoint processing API that lets you convert PPTM presentations to JPEG 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 PPTM to JPEG via C++

Render a slide from a PPTM presentation to JPEG with a few lines of C++ code.

  1. Create a Presentation instance from the source PPTM file.
  2. Get the first slide from the presentation.
  3. Set the output image dimensions with Size.
  4. Call GetImage to render the slide.
  5. Save the rendered image with ImageFormat::Jpeg.

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.
 

PPTM to JPEG C++ Conversion Source Code

auto presentation = MakeObject<Presentation>(u"presentation.pptm");
auto slide = presentation->get_Slide(0);

auto desiredSize = Size(1200, 800);
auto image = slide->GetImage(desiredSize);
image->Save(u"slide.jpeg", ImageFormat::Jpeg);
image->Dispose();

presentation->Dispose();
 

Free App to Convert PPTM to JPEG

Convert presentations and slides online.

Other Supported Conversions

You can also convert PPTM into many other file formats including a few listed below.

PPTM TO BMP (Bitmap Image)
PPTM TO EMF (Enhanced Metafile Format)
PPTM TO GIF (Graphics Interchange Format)
PPTM TO HTML (Hypertext Markup Language)
PPTM TO ODP (OpenDocument Presentation Format)
PPTM TO OTP (OpenDocument Presentation Template)
PPTM TO PDF (Portable Document Format)
PPTM TO PNG (Portable Network Graphics)
PPTM TO POT (PowerPoint 97–2003 Template)
PPTM TO POTM (PowerPoint Macro-Enabled Template)
PPTM TO POTX (PowerPoint Template)
PPTM TO PPS (PowerPoint Slide Show)
PPTM TO PPSM (Macro-enabled Slide Show)
PPTM TO PPSX (PowerPoint Slide Show)
PPTM TO PPT (PowerPoint 97-2003 Presentation)
PPTM TO PPTX (Open XML Presentation Format)
PPTM TO SVG (Scalable Vector Graphics)
PPTM TO SWF (Small Web Format)
PPTM TO TIFF (Tagged Image File Format)
PPTM TO XML (PowerPoint XML Presentation)
PPTM TO XPS (XML Paper Specification)