Skip to content

Instantly share code, notes, and snippets.

@kapadia
Created September 25, 2014 17:42
Show Gist options
  • Star 2 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save kapadia/ab5e3e0d36c0c19556e0 to your computer and use it in GitHub Desktop.
Save kapadia/ab5e3e0d36c0c19556e0 to your computer and use it in GitHub Desktop.
Scaling Bit Depth with GDAL
# Converting from 16bit to 8bit
gdal_translate -ot Byte -scale 0 65535 0 255 sixteen.tif eight.tif
# Converting from 8bit to 16bit
gdal_translate -ot Uint16 -scale 0 255 0 65535 eight.tif sixteen.tif
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment