分布式系统框架(V2.0) 轻松承载百亿数据,千万流量!讨论专区 - 源码下载 - 官方教程
HttpHelper爬虫框架(V2.7-含.netcore) HttpHelper官方出品,爬虫框架讨论区 - 源码下载 - 在线测试和代码生成
HttpHelper爬虫类(V2.0) 开源的爬虫类,支持多种模式和属性 源码 - 代码生成器 - 讨论区 - 教程- 例子
数据库的字段类型是什么,是不是限制大小了。 |
我图片type 有 7000行 可是 我写的读出来只有50行 你帮我看看 哪里 不对 [C#] 纯文本查看 复制代码 byte[] imagebytes = null; SqlConnection conn = new SqlConnection(conn_kai); conn.Open(); string sql = string.Format("select * from StuDent where SDName='刘艳'"); SqlCommand comm = new SqlCommand(sql, conn); SqlDataReader mydr = comm.ExecuteReader(); while (mydr.Read()) { imagebytes = (byte[])mydr.GetValue(12); byte[] imageData = (byte[])mydr[12]; } mydr.Close(); conn.Close(); MemoryStream ms = new MemoryStream(imagebytes); Bitmap bmpt = new Bitmap(Bitmap.FromStream(ms)); pictureBox1.Image = bmpt; |
我的最的一个不是写的有存取的吗? pictureBox1.Image = System.Drawing.Image.FromStream(new MemoryStream(bytes)); this.pictureBox1.SizeMode = PictureBoxSizeMode.Zoom; |