Skip to content

Instantly share code, notes, and snippets.

@ngs
Created November 11, 2010 19:44
Show Gist options
  • Select an option

  • Save ngs/673052 to your computer and use it in GitHub Desktop.

Select an option

Save ngs/673052 to your computer and use it in GitHub Desktop.
jpegtopng() {
if [ ! -z "$1" ]; then
if [ -z "$2" ]; then
jpegtopnm $1 | pnmtopng > ${1%.*}.png
else
jpegtopnm $1 | pnmtopng > $2
fi
fi
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment