码迷,mamicode.com
首页 > 数据库 > 详细

C# 把图片资源转成字节数组写入到数据库

时间:2018-12-21 13:12:06      阅读:264      评论:0      收藏:0      [点我收藏+]

标签:EDA   oba   image   字节   int   png   pre   ring   reader   

                string fullpath = @"C:\Users\0380003020\Desktop\平面.png";//文件路径

                System.IO.FileStream fs = new System.IO.FileStream(fullpath, System.IO.FileMode.Open);

                byte[] imagebytes = new byte[fs.Length];

                System.IO.BinaryReader br = new System.IO.BinaryReader(fs);

                imagebytes = br.ReadBytes(Convert.ToInt32(fs.Length));
                fs.Close();
                CfgFileResource obj = new CfgFileResource();
                obj.Rid = 0;
                obj.ResourceBody = imagebytes;
                obj.ResourceName = "3#3楼A区.png";
                obj.ResourcePath = "Plan/Global/";
                obj.UpdateTime = DateTime.Now;
                CfgFileResourceDao.Save(obj);

 

C# 把图片资源转成字节数组写入到数据库

标签:EDA   oba   image   字节   int   png   pre   ring   reader   

原文地址:https://www.cnblogs.com/mathyk/p/10153798.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!