Skip to content

Instantly share code, notes, and snippets.

@mdeterman
Created December 6, 2015 18:11
Show Gist options
  • Save mdeterman/7bf62a3a06e28a16e48c to your computer and use it in GitHub Desktop.
Save mdeterman/7bf62a3a06e28a16e48c to your computer and use it in GitHub Desktop.
C# ImageToByte
public static byte[] ImageToByte(Image img)
{
ImageConverter converter = new ImageConverter();
return (byte[])converter.ConvertTo(img, typeof(byte[]));
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment