Skip to content

Instantly share code, notes, and snippets.

@supermasita
Created August 25, 2016 16:10
Show Gist options
  • Save supermasita/d407c5aea6c1a7471e6795665f49de65 to your computer and use it in GitHub Desktop.
Save supermasita/d407c5aea6c1a7471e6795665f49de65 to your computer and use it in GitHub Desktop.
Convert PPT to JPG
# http://stackoverflow.com/questions/9548755/powerpoint-ppt-to-jpg-or-png-image-conversion-using-php#16045442
## Dependencies
apt-get install unoconv
apt-get install imagemagick
## First converts your presentation to PDF
unoconv -f pdf presentation.ppt
## Then convert your PDF to jpg
convert presentation.pdf presentation_%03d.jpg
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment