Comprehensive Guide for Developers: Features, Integration, and API Reference
PDF to PPTX conversion API. More...
#include <pdfsdk/core.h>Go to the source code of this file.
Classes | |
| struct | PDFConvertToPptxParams |
| Contains conversion-related parameters such as the output file, and a flag related table recognition. More... | |
Macros | |
| #define | PDF_PDF2PPTX_API PDFSDK_IMPORT_ |
Functions | |
| PDFSDK_IMPORT_ PDErrCode PDFSDK_CALLCONV | PDFConvertToPptx (PDDoc source, const PDPageRange *pageRange, const PDProgressMonitor *progress, void *progressData, const PDFConvertToPptxParams *params) |
| A function to covert a PDF file (or a part of it) into a MS PowerPoint Document format (.pptx). | |
PDF to PPTX conversion API.
| PDFSDK_IMPORT_ PDErrCode PDFSDK_CALLCONV PDFConvertToPptx | ( | PDDoc | source, |
| const PDPageRange * | pageRange, | ||
| const PDProgressMonitor * | progress, | ||
| void * | progressData, | ||
| const PDFConvertToPptxParams * | params ) |
A function to covert a PDF file (or a part of it) into a MS PowerPoint Document format (.pptx).
| [in] | source | The already opened PDF document object to convert into PowerPoint. |
| [in] | pageRange | A pointer to specific pages to convert. By passing a null pointer the whole document is converted. To select specific pages, pass an array of the desired pages along with it's size. |
| [in] | progress | A pointer to the progress monitor which will contain function pointers, which wrap the function calls to the functions of the user defined class which produces the progressData object. It may be null. |
| [in] | progressData | The address of a class that has to be user defined with a subset of the functions described in the PDProgressMonitor struct, omitting the first parameter (i.e. void* clientData). These will serve as callback functions for the conversion process. It may be null. |
| [in] | params | A pointer to the conversion parameters like the output file folder and name, and a flag stating whether to recognize tables. |