DOCX
JPG
PDF
XML
ODP
JPEG
Convert ODP to JPEG in C++
High performance ODP to JPEG conversion using C++ library without the need of Microsoft PowerPoint installation.
Convert ODP to JPEG Using C++
In order to convert ODP to JPEG, we’ll use
API which is a feature-rich, powerful and easy to use document manipulation and conversion API for C++ platform. You can download its latest version directly, just open
package manager, search for Aspose.Slides.Cpp and install. You may also use the following command from the Package Manager Console.
Command
PM> Install-Package Aspose.Slides.Cpp
How to Convert ODP to JPEG via C++
C++ developers can easily convert ODP file to JPEG in just a few lines of code.
- Load ODP file with Aspose.Slides for C++ Presentation Object.
- Select the first slide.
- Set the desired dimensions.
- Get the thumbnail with desired dimensions.
- Call Save() method having JPEG output parameter .
- Open JPEG file in compatible program.
System Requirements
Before running the C++ conversion example code, make sure that you have the following prerequisites.
- Microsoft Windows or a compatible OS with C++ Runtime Environment for Windows 32 bit, Windows 64 bit and Linux 64 bit.
- Aspose.Slides for C++ DLL referenced in your project.
ODP to JPEG C++ Conversion Source Code
// Load the ODP
SharedPtr<Presentation> pres = MakeObject<Presentation>(u"sourceFile.odp");
// Access the first slide
SharedPtr<ISlide> slide = pres->get_Slides()->idx_get(0);
// User defined dimension
int desiredX = 1200;
int desiredY = 800;
// Getting scaled value of X and Y
float ScaleX = (float)(1.0 / pres->get_SlideSize()->get_Size().get_Width()) * desiredX;
float ScaleY = (float)(1.0 / pres->get_SlideSize()->get_Size().get_Height()) * desiredY;
// Create a custom scale image
auto bitmap = slide->GetThumbnail(ScaleX, ScaleY);
bitmap->Save(u"output.jpeg", ImageFormat::get_Jpeg());
//Iterate through each slide via index and convert
Free App to Convert ODP to JPEG
Other Supported Conversions
You can also convert ODP into many other file formats including few listed below.
ODP TO BMP (Bitmap Image)
ODP TO EMF (Enhanced Metafile Format)
ODP TO GIF (Graphical Interchange Format)
ODP TO HTML (Hyper Text Markup Language)
ODP TO OTP (OpenDocument Standard Format)
ODP TO PDF (Portable Document Format)
ODP TO PNG (Portable Network Graphics)
ODP TO POT (Microsoft PowerPoint Template Files)
ODP TO POTM (Microsoft PowerPoint Template File)
ODP TO POTX (Microsoft PowerPoint Template Presentation)
ODP TO PPS (PowerPoint Slide Show)
ODP TO PPSM (Macro-enabled Slide Show)
ODP TO PPSX (PowerPoint Slide Show)
ODP TO PPT (Microsoft PowerPoint 97-2003)
ODP TO PPTM (Macro-enabled Presentation File)
ODP TO PPTX (Open XML presentation Format)
ODP TO SVG (Scalable Vector Graphics)
ODP TO TIFF (Tagged Image Format)
ODP TO XML (Extensible Markup Language)
ODP TO XPS (XML Paper Specifications)