Skip to content

Instantly share code, notes, and snippets.

@unot
Created April 12, 2011 23:58
Show Gist options
  • Save unot/916705 to your computer and use it in GitHub Desktop.
Save unot/916705 to your computer and use it in GitHub Desktop.
JPEG image to 1812x1240 Bitmap image
#!/bin/bash
for i in *.jpg ;
do
convert -depth 8 -density 600 -geometry 1812x1280 -crop 1812x1240+0+15 $i `basename ${i} jpg`bmp ;
done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment