Skip to content

Instantly share code, notes, and snippets.

@nicdoye
Created November 22, 2016 15:47
Show Gist options
  • Save nicdoye/e580a2cd56aa1ed4bb95e74b98cb5b0f to your computer and use it in GitHub Desktop.
Save nicdoye/e580a2cd56aa1ed4bb95e74b98cb5b0f to your computer and use it in GitHub Desktop.
# A quick alias for those of us without such a command
tiff2png ()
{
local ifile=$1
local ofile=$(dirname "${ifile}")/$(basename "${ifile}" .tiff).png
tifftopnm < "${ifile}"| pnmtopng > "${ofile}"
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment