Reputation: 16318
I am trying to generate a ppt programmatically which basically will have multiple slides with images and text. I tried looking for it but did not find any way to do so, however I find couple of apps that do so PDF to PowerPoint and PDF to PowerPoint - Convert PDF to Powerpoint.
The first one it seems they are doing the conversion on server but later one is doing it locally
I see that there is no easy or rather I should say in-built way of doing this locally and also I did not find any 3rd party that does so.Can anyone suggest best way to do it? Should I stop for in-app solutions and look for ways to do the conversion on server side?
Upvotes: 2
Views: 426
Reputation: 11577
There is no in-build Apple API for this. Also i haven't heard of any third party to convert in native app itself. If you want to do build one as yourself.
My approch
Create a pdf then convert to ppt. You search for how to convert pdf to ppt in ios.
Other way
There is a third party application which can do exactly what you want to achieve. But it was using server side coding.
pod 'AsposeSlidesCloud'
Note: The application links you have given where taking longer time to convert the files. I suspect there will be server side support for converting the files.
Upvotes: 1