Powerpoint Slide to Image

HI All,

I want to convert one slider power point to image(jpeg or png) using vbcode in invoke code activity.

Any one have vb code for this & implemented in invoke code activity.

Any help here will be appreciated.

Hi @rsahu

Feel free to browse our Marketplace, it could that one one of these packages has this functionality:
https://connect.uipath.com/search?search=powerpoint

Hi @rsahu,

Check this below links:

Or

Using Invoke code Activity refer below:

Regards,
Neelima.

1 Like

Thanks Every one for your replies. i resolved this using VB code

1 Like

@rsahu,

The solution that worked for you please mark it as solution and close the topic.

1 Like

I Have used below code for converting PPT Slide to Image. I have only single slide PPT so below code worked for me. Thanks every one whoever put effort here.

Dim pptapplication As New Microsoft.Office.Interop.PowerPoint.Application
Dim prsPres As Microsoft.Office.Interop.PowerPoint.Presentation = pptapplication.Presentations.Open(“PPT File Path”)
prsPres.Slides(1).Export(“Jpg File Path”, “jpg”, 0, 0)
prsPres.Close()
pptapplication.Quit()
For Each prog As Process In Process.GetProcesses
If prog.ProcessName = “POWERPNT” Then
prog.Kill()
End If
Next

1 Like

This topic was automatically closed 3 days after the last reply. New replies are no longer allowed.