首页 > 编程 > C# > 正文

将图片保存到一个XML文件

2023-05-18 12:33:09
字体:
来源:转载
供稿:网友

WinForm的资源文件中,将PictureBox的Image属性等非文字内容都转变成文本保存,这是通过序列化(Serialization)实现的,下面讲解了使用本方法把图片保存到XML中的方法。

using System.Runtime.Serialization.Formatters.Soap;
       Stream stream = new FileStream("E://Image.xml",FileMode.Create,FileAccess.Write,FileShare.None); 
       SoapFormatter f = new SoapFormatter(); 
       Image img = Image.FromFile("E://Image.bmp"); 
       f.Serialize(stream,img); 
       stream.Close();

发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表