Last active
December 21, 2015 20:59
-
-
Save Apkawa/6365499 to your computer and use it in GitHub Desktop.
Image Magick Tip
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/sh | |
image="$1" | |
new_dirname="$2" | |
new_image="${new_dirname}/${image}" | |
new_dir=$(dirname "$new_image") | |
mkdir -p "$new_dir" | |
convert "$image" -resize 533x800 -quality 99 "$new_image" |
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
#Конвертация всех psd в jpg. результат складывается в out2 | |
mogrify -format jpg -flatten -path out_dir dir/*.psd | |
# Рекурсивная конвертация из одной директории в другую | |
find dirname -type f -iname "*.jpg" -exec sh conv.sh \{\} new_dirname\; | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment