Skip to content

Instantly share code, notes, and snippets.

@ivanxuu
Last active January 15, 2018 11:48
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save ivanxuu/77af6d6d512cee5ac30e to your computer and use it in GitHub Desktop.
Save ivanxuu/77af6d6d512cee5ac30e to your computer and use it in GitHub Desktop.
Conversor imagenes prestashop
for pic in *.jpg; do
convert "${pic}" -interlace Plane -sampling-factor 4:2:0 -quality 84% -strip -resize 225x137 "${pic%.*}-home.jpg"
convert "${pic}" -interlace Plane -sampling-factor 4:2:0 -quality 84% -strip -resize 355x216 "${pic%.*}-large.jpg"
convert "${pic}" -interlace Plane -sampling-factor 4:2:0 -quality 84% -strip -resize 115x66 "${pic%.*}-medium.jpg"
convert "${pic}" -interlace Plane -sampling-factor 4:2:0 -quality 84% -strip -resize 1200x732 "${pic%.*}-category.jpg"
convert "${pic}" -interlace Plane -sampling-factor 4:2:0 -quality 84% -strip -resize 70x70 "${pic%.*}-small.jpg"
convert "${pic}" -interlace Plane -sampling-factor 4:2:0 -quality 84% -strip -resize 1200x732 "${pic%.*}-thickbox.jpg"
done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment