将图片保存到一个XML文件

前端之家收集整理的这篇文章主要介绍了将图片保存到一个XML文件前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
转自:blog.csdn.net/chinajiyong/article/details/7209048
[csharp]
view plain copy
  1. 图片保存到一个XML文件
  2. WinForm的资源文件中,将PictureBox的Image属性等非文字内容都转变成文本保存,这是通过序列化(Serialization)实现的,
  3. 例子://
  4. usingSystem.Runtime.Serialization.Formatters.Soap;
  5. Streamstream=newFileStream("E:\\Image.XML",FileMode.Create,FileAccess.Write,FileShare.None);
  6. SoapFormatterf=newSoapFormatter();
  7. Imageimg=Image.FromFile("E:\\Image.bmp");
  8. f.Serialize(stream,img);
  9. stream.Close();

猜你在找的XML相关文章