zoukankan      html  css  js  c++  java
  • C/S 图片操作

    从数据库中读取:
    方法一:
    SqlCommand Cmd = new SqlCommand("SELECT * FROM student", MyCn);
    SqlDataAdapter da = new SqlDataAdapter(Cmd);
    DataSet ds = new DataSet();
    da.Fill(ds, "student");
    Byte[] byteBLOBData =  new Byte[0];
    byteBLOBData = (Byte[])(ds.Tables["student"].Rows[index]["ZP"]);
    MemoryStream stmBLOBData = new MemoryStream(byteBLOBData);
    this.pictureBox2.Image= Image.FromStream(stmBLOBData);

    方法二:
    OleDbDataAdapter MyDa=new OleDbDataAdapter("select ZP from picture",MyCn);
       DataSet ds=new DataSet();
       MyDa.Fill(ds,"picture");
    foreach(DataRow rFirst in ds.Tables["picture"].Rows)
        {
         bData=(byte[])rFirst["ZP"];
        }

    MemoryStream stream=new MemoryStream(bData,true);
    //MemoryStream stream=new MemoryStream(bData);
        // Create a bitmap from the stream
        Bitmap bmp = new Bitmap(stream);

        try
        {
         //Showing
         this.pictureBox1.Image=bmp;
         //this.pictureBox1.Image=Image.FromStream(stream);
        }
        catch{};
        // Close the stream
        stream.Close();

    =========================================================================
    插入数据库中:
    SqlCommand MyCmd=new SqlCommand("INSERT INTO student(XH,ZP) VALUES(@XH,@ZP)",MyCn);

       //Read jpg into file stream, and from there into Byte array.
       FileStream fsBLOBFile =  new FileStream(strBLOBFilePath,FileMode.Open, FileAccess.Read);
       Byte[] bytBLOBData = new Byte[fsBLOBFile.Length];
       fsBLOBFile.Read(bytBLOBData, 0, bytBLOBData.Length);
       fsBLOBFile.Close();

       MyCmd.Parameters.Add("@XH",this.txtBox_XH.Text.Trim());

       //Create parameter for insert command and add to SqlCommand object.
       SqlParameter prm = new  SqlParameter("@ZP", SqlDbType.VarBinary, bytBLOBData.Length, ParameterDirection.Input, false,0, 0, null, DataRowVersion.Current, bytBLOBData);
       MyCmd.Parameters.Add(prm);

       
       try
       {
        MyCn.Open();
        MyCmd.ExecuteNonQuery();
        MessageBox.Show("保存到数据库成功!","提示");
       }
       catch(Exception ex)
       {
        MessageBox.Show(ex.Message);
       }
       MyCn.Close();

  • 相关阅读:
    向量的基本运算
    tar 命令小解
    写一个块设备驱动11,12
    写一个块设备驱动9,10
    写一个块设备驱动7,8
    写一个块设备驱动5,6
    写一个块设备驱动1,2
    Linux驱动开发庖丁解牛系列
    Linux设备驱动程序(第三版)
    嵌入式系统移植基础三部曲 段彦青
  • 原文地址:https://www.cnblogs.com/RobotTech/p/532949.html
Copyright © 2011-2022 走看看