Last active
December 30, 2015 08:19
-
-
Save shishirsharma/7801761 to your computer and use it in GitHub Desktop.
This file contains 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
$ sudo apt-get install imagemagick | |
$ sudo apt-get install poppler-utils |
This file contains 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
$ brew install imagemagick |
This file contains 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
$ for image in `ls *.png`; do convert $image `basename $image .png`.pdf; done | |
$ pdfunite *.pdf out.pdf |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment