CodePaste Logo
New Snippet New Snippet Recent Snippets Recent Snippets My Snippets My Snippets Web Code Search Snippets Search
Sign inor Register
Format:
Recent snippets matching tags of Image to byte array and vise-versa C
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);
by Zviadi   March 24, 2010 @ 1:20pm
406 Views
no comments
 
brought to you by:
West Wind Techologies



If you find this site useful and use it frequently please consider making a donation to support this free service.
Donate