Skip to content

Instantly share code, notes, and snippets.

@geobabbler
Created February 24, 2014 19:53
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save geobabbler/9195713 to your computer and use it in GitHub Desktop.
Save geobabbler/9195713 to your computer and use it in GitHub Desktop.
if (ImageFormat.Jpeg.Equals(image.RawFormat))
{
// JPEG
}
else if (ImageFormat.Png.Equals(image.RawFormat))
{
// PNG
}
else if (ImageFormat.Gif.Equals(image.RawFormat))
{
// GIF
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment