Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/adamwulf/powerpointtouiimage
Objective-C code to generate UIImage thumbnails from slides in a PowerPoint (ppt) file
https://github.com/adamwulf/powerpointtouiimage
Last synced: 3 days ago
JSON representation
Objective-C code to generate UIImage thumbnails from slides in a PowerPoint (ppt) file
- Host: GitHub
- URL: https://github.com/adamwulf/powerpointtouiimage
- Owner: adamwulf
- License: cc-by-4.0
- Created: 2014-05-29T05:40:02.000Z (over 10 years ago)
- Default Branch: master
- Last Pushed: 2021-07-15T17:44:09.000Z (over 3 years ago)
- Last Synced: 2024-05-01T12:30:03.308Z (7 months ago)
- Language: Objective-C
- Homepage: http://getlooseleaf.com/opensource/
- Size: 338 KB
- Stars: 56
- Watchers: 6
- Forks: 17
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# PowerPoint slide thumbnails
This is a sample project to show how to generate thumbnail UIImages for each slide of a .ppt file.
The basic idea was expanded on from an answer in stack overflow: http://stackoverflow.com/questions/15971969/ios-library-to-convert-powerpoint-presentations-into-images
Many thanks to Ram (http://stackoverflow.com/users/1067951/ram) for his suggestion.
# Notes
1. Since this happens in a UIWebView, all of this happens on the main thread
2. Smaller thumbnails will have a smaller memory footprint when generating - lots of large thumbnails could be bad!
3. Making extremely small thumbnails might screw up the offsets in the webview, generating offset slides
4. Thanks for taking a look!