Format:
Recent snippets matching tags of Image to byte array and vise-versa C
//სურათის ობიექტის კონვერტაცია ბაიტების მასივში. private byte[] ImageToByteArray(System.Drawing.Image imageIn) { MemoryStream ms = new MemoryStream(); imageIn.Save(ms, System.Drawing.Imaging.ImageFormat.Gif); return ms.ToArray(); } //სურათის ბაიტების მასივის კონვერტაცია სურათის ობიექტში private Image ByteArrayToImage(byte[] byteArrayIn) { MemoryStream ms = new MemoryStream(byteArrayIn);
406 Views
no comments
Subscribe
Discuss
What's new
What is it
New Snippet
Recent Snippets
My Snippets
Web Code
Search
