Snippets.PRO Keep. Track. Share.

Have a Snippet?

Keep, track and share your code snippets with your friends



C#: Image to byte array Share on Vkontakte

Image to byte array

  1. public static byte[] imageToByteArray(Image imageIn)
  2. {
  3. MemoryStream ms = new MemoryStream();
  4. imageIn.Save(ms, System.Drawing.Imaging.ImageFormat.Gif);
  5. return ms.ToArray();
  6. }


Tag: Bytes, image, C#

4 Comments

  1. Avatar
    seaman

    30th May 2013, 08:07

    А поток закрывать не надо?

  2. Avatar
    RedOctober

    31st May 2013, 13:49

    Testing BB-codes: bold text, italic text, some code here

    1. echo ('My Cool String');

  3. Avatar
    stalin

    3rd June 2013, 08:54

    AndrewSt, верно, я не позаботился о ресурсах вовремя.