PowerPoint Image Conversions
The FileVerbs API enables developers to convert PowerPoint slides into image formats and export speaker notes. This is useful for thumbnail generation, image-based presentations, or notes archiving.
Image Format Support
- PowerPointToPng: Converts each slide to PNG image.
- PowerPointToJpeg: Converts each slide to JPEG image.
- PowerPointToGif: Converts each slide to GIF image.
- PowerPointToBmp: Converts each slide to BMP image.
- PowerPointToTiff: Generates a multi-page TIFF from all slides.
- PowerPointToSvg: Converts each slide to Scalable Vector Graphics.
Example Requests
PowerPointToPng
{
"action": "powerpointtopng",
"parameters": {
"fileIds": ["your_file_id_here"],
"options": {
"ImageSettings": {
"ResolutionDpi": 300
}
}
}
}
PowerPointToTiff
{
"action": "powerpointtotiff",
"parameters": {
"fileIds": ["your_file_id_here"],
"options": {
"ImageSettings": {
"Compression": "None",
"ResolutionDpi": 150
}
}
}
}
Other formats follow similar structure. Each slide is rendered into the requested format individually, except for TIFF which outputs a multipage image.
Output Information
- Output type: Individual images per slide (except TIFF)
- File name pattern: <original>_1.png, <original>_2.png, etc.
- Supported DPI settings: 72–600 dpi
- Multipage TIFF support: Yes