Share via

Microsoft 365 rest api to convert pptx/vsdx to png

PACHECO LLANOS, Aracely 56 Reputation points
2022-03-14T13:40:59.017+00:00

Hello,

On my linux server, I would like to use microsoft 365 rest api to convert pptx/vsdx to png. Is it possible? I found onedrive rest API [https://learn.microsoft.com/en-us/onedrive/developer/rest-api/api/driveitem_get_content_format?view=odsp-graph-online] that can convert some formats to jpg. I would appreciate any documentation about it.

Best regards,

Microsoft 365 and Office | SharePoint | Development
Microsoft Partner Center API
Microsoft Security | Microsoft Graph
0 comments No comments

Answer accepted by question author

JanardhanaVedham-MSFT 3,581 Reputation points
2022-03-14T15:11:03.457+00:00

Hi @PACHECO LLANOS, Aracely ,

Yes, correct. You can use Download/convert an OneDrive file in another format Microsoft Graph Rest API and currently there is no Microsoft Graph API avialble to convert .vsdx format into other file format.

Here are the few examples to convert an OneDrive .pptx file to .jpg format using Microsoft Graph API.

https://graph.microsoft.com/v1.0/me/drive/root:/{filename.pptx}:/content?format=jpg&width={width-value}&height={height-value}  
https://graph.microsoft.com/v1.0/users/{user-id} or {UserPrincipalName}/drive/root:/{filename.pptx}:/content?format=jpg&width={width-value}&height={height-value}  

Note: As per my testing in Postman API tool, only first slide of PPTX file is being converted into .jpg format and where as if we convert .PPTX file into .PDF format then all the slides included in the conversion.

**Example **:

https://graph.microsoft.com/v1.0/me/drive/root:/TestPPT.pptx:/content?format=jpg&width=800&height=800  

182789-image.png

**Example **:

https://graph.microsoft.com/v1.0/users/******@o365XXX.onmicrosoft.com/drive/root:/TestPPT.pptx:/content?format=jpg&width=800&height=800  

182903-image.png

Here is the API to convert an OneDrive .pptx file to .pdf format.

https://graph.microsoft.com/v1.0/me/drive/root:/{filename.pptx}:/content?format=pdf  
https://graph.microsoft.com/v1.0/users/{user-id} or {UserPrincipalName}/drive/root:/{filename.pptx}:/content?format=pdf  

Examples:

https://graph.microsoft.com/v1.0/me/drive/root:/TestPPT.pptx:/content?format=pdf
https://graph.microsoft.com/v1.0/users/******@o365XXX.onmicrosoft.com/drive/root:/TestPPT.pptx:/content?format=pdf

Hope this helps.

If the answer is helpful, please click Accept Answer and kindly upvote it. If you have any further questions about this answer, please click Comment.

Was this answer helpful?

0 comments No comments

1 additional answer

Sort by: Most helpful
  1. PACHECO LLANOS, Aracely 56 Reputation points
    2022-03-14T15:28:38.81+00:00

    Thank you very much for the answer it is helpful, and just to be sure, is there other REST API that I can use, if I don't want convert files from onedrive?

    Was this answer helpful?


Your answer

Answers can be marked as 'Accepted' by the question author and 'Recommended' by moderators, which helps users know the answer solved the author's problem.