Skip to content

Instantly share code, notes, and snippets.

@indatawetrust
Created December 6, 2016 10:24
Show Gist options
  • Save indatawetrust/ca5943ead5d442d3eb11f07b018ad3a6 to your computer and use it in GitHub Desktop.
Save indatawetrust/ca5943ead5d442d3eb11f07b018ad3a6 to your computer and use it in GitHub Desktop.
libvips | convert tif to jpg
# apt-get install libvips libvips-dev
for f in *.tif; do
echo "Converting $f"; vips copy "$f" "$(basename "$f" .tif).jpg";
done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment