Forked from supermasita/gist:d407c5aea6c1a7471e6795665f49de65
Created
April 16, 2020 02:20
-
-
Save hedcler/e5740a7d5a3739c971fc4e11756cdb16 to your computer and use it in GitHub Desktop.
Convert PPT to JPG
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# 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