Skip to content

Instantly share code, notes, and snippets.

@mys721tx
Created May 20, 2024 20:12
Show Gist options
  • Save mys721tx/66241ab2781fca78561db51e6b116ca6 to your computer and use it in GitHub Desktop.
Save mys721tx/66241ab2781fca78561db51e6b116ca6 to your computer and use it in GitHub Desktop.
Convert 16 bit images to 8 bit
#!/bin/bash
for f in Default/*.tif; do
convert "$f" -auto-level -depth 8 "8bit/$(basename "$f")"
done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment