Created
November 27, 2014 09:30
-
-
Save dymio/6195e6bc75b5c4d866cf to your computer and use it in GitHub Desktop.
Image Magick Hints
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
#!/bin/bash | |
# convert all .png in curent folder to .jpg with white background and resizing | |
find . -name "*.png" -exec convert {} -resize 1046x -background white -flatten {}.jpg \; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment