Skip to content

Instantly share code, notes, and snippets.

@pier-oliviert
Created June 22, 2011 18:18
Show Gist options
  • Select an option

  • Save pier-oliviert/1040730 to your computer and use it in GitHub Desktop.

Select an option

Save pier-oliviert/1040730 to your computer and use it in GitHub Desktop.
#! /bin/bash
function retina-resize-image {
IMAGES=$@
RADIUS='1'
SIGMA='0.0'
FILTER=Catrom
for image in $IMAGES;
do
convert $image -sharpen ${RADIUS}x${SIGMA} -filter ${FILTER} -resize 50% `basename -s @2x.png $image`.png
done
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment