brew install imagemagick
brew install ghostscript
brew install ufraw
netpbm dcraw
for img in *.NEF; do convert "$img" "$img.jpg"; done
source: http://superuser.com/a/577661
to move the converted JPG files on a ./temp folder:
for img in *.NEF; do convert "$img" "./temp/$img.jpg"; done
cd to the directory where your images are located (temp) after creating a new directory to hold the changed files (say, temp2)
mogrify -path ./temp2/ -resize 40x40% -quality 60 -format jpg *.jpg
this will take all png files in your current directory (temp), resize to 60% (of largest dimension and keep aspect ratio), set jpg quality to 60 and convert to jpg.
source: http://www.imagemagick.org/discourse-server/viewtopic.php?t=14587
composite -gravity NorthEast logo.png photo.jpg output.jpg
Here is a good reference about compose http://www.imagemagick.org/Usage/compose/
Suavizar bordes http://jafty.com/blog/fixing-jagged-image-edges-with-gimp/
Cambiar resolucion de imagen http://guides.lib.umich.edu/c.php?g=282942&p=1888162