Skip to content

Instantly share code, notes, and snippets.

@cprieto
Created June 11, 2009 16:45
Show Gist options
  • Save cprieto/128045 to your computer and use it in GitHub Desktop.
Save cprieto/128045 to your computer and use it in GitHub Desktop.
private static ImageCodecInfo GetEncoder(ImageFormat format)
{
var codecs = ImageCodecInfo.GetImageEncoders();
foreach (var codec in codecs) {
if (codec.FormatID == format.Guid) {
return codec;
}
}
return null;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment