Last active
December 31, 2018 06:34
-
-
Save lzjluzijie/6c04148c28e0542671441367f412b805 to your computer and use it in GitHub Desktop.
psd2png.sh
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
cd psd | |
for psd in `ls` | |
do | |
magick $psd -resize 1280x720 -flatten $psd.png | |
done |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment