最新文章專題視頻專題問答1問答10問答100問答1000問答2000關(guān)鍵字專題1關(guān)鍵字專題50關(guān)鍵字專題500關(guān)鍵字專題1500TAG最新視頻文章推薦1 推薦3 推薦5 推薦7 推薦9 推薦11 推薦13 推薦15 推薦17 推薦19 推薦21 推薦23 推薦25 推薦27 推薦29 推薦31 推薦33 推薦35 推薦37視頻文章20視頻文章30視頻文章40視頻文章50視頻文章60 視頻文章70視頻文章80視頻文章90視頻文章100視頻文章120視頻文章140 視頻2關(guān)鍵字專題關(guān)鍵字專題tag2tag3文章專題文章專題2文章索引1文章索引2文章索引3文章索引4文章索引5123456789101112131415文章專題3
問答文章1 問答文章501 問答文章1001 問答文章1501 問答文章2001 問答文章2501 問答文章3001 問答文章3501 問答文章4001 問答文章4501 問答文章5001 問答文章5501 問答文章6001 問答文章6501 問答文章7001 問答文章7501 問答文章8001 問答文章8501 問答文章9001 問答文章9501
當(dāng)前位置: 首頁 - 科技 - 知識百科 - 正文

把圖片保存到數(shù)據(jù)庫中和從數(shù)據(jù)庫中讀取圖片

來源:懂視網(wǎng) 責(zé)編:小采 時間:2020-11-09 16:03:53
文檔

把圖片保存到數(shù)據(jù)庫中和從數(shù)據(jù)庫中讀取圖片

把圖片保存到數(shù)據(jù)庫中和從數(shù)據(jù)庫中讀取圖片:最近做到一個小項目,其中關(guān)系到圖片的一些操作。比如:將圖片保存到數(shù)據(jù)庫中、從數(shù)據(jù)庫中讀取圖片、顯示圖片、打印圖片等。此處對這些在項目中遇到的一些瑣碎知識加以總結(jié),以便日后查找。 1、將圖片作為其中的一個參數(shù)保存到數(shù)據(jù)庫中 在項目中,一般是將圖
推薦度:
導(dǎo)讀把圖片保存到數(shù)據(jù)庫中和從數(shù)據(jù)庫中讀取圖片:最近做到一個小項目,其中關(guān)系到圖片的一些操作。比如:將圖片保存到數(shù)據(jù)庫中、從數(shù)據(jù)庫中讀取圖片、顯示圖片、打印圖片等。此處對這些在項目中遇到的一些瑣碎知識加以總結(jié),以便日后查找。 1、將圖片作為其中的一個參數(shù)保存到數(shù)據(jù)庫中 在項目中,一般是將圖

最近做到一個小項目,其中關(guān)系到圖片的一些操作。比如:將圖片保存到數(shù)據(jù)庫中、從數(shù)據(jù)庫中讀取圖片、顯示圖片、打印圖片等。此處對這些在項目中遇到的一些瑣碎知識加以總結(jié),以便日后查找。 1、將圖片作為其中的一個參數(shù)保存到數(shù)據(jù)庫中 在項目中,一般是將圖

  最近做到一個小項目,其中關(guān)系到圖片的一些操作。比如:將圖片保存到數(shù)據(jù)庫中、從數(shù)據(jù)庫中讀取圖片、顯示圖片、打印圖片等。此處對這些在項目中遇到的一些瑣碎知識加以總結(jié),以便日后查找。

  1、將圖片作為其中的一個參數(shù)保存到數(shù)據(jù)庫中

  在項目中,一般是將圖片轉(zhuǎn)換成二進制流格式,然后保存到數(shù)據(jù)庫中。同時數(shù)據(jù)庫表中存儲圖片的格式一般為image。此次項目,是將圖片作為一個參數(shù),和其他幾個參數(shù)一起保存到數(shù)據(jù)庫中,和在網(wǎng)上搜索到的圖片保存不太一樣,此處稍作修改,但都是檢測過的。

  存儲步驟:

  1、搜索到圖片的路徑

  2、讀取圖片并將圖片轉(zhuǎn)換成二進制流格式

  3、sql語句保存到數(shù)據(jù)庫中。

  貼代碼: 

private void btnWrite_Click(object sender, EventArgs e)
 {
 OpenFileDialog ofd = new OpenFileDialog();
 ofd.Filter = "*jpg|*.JPG|*.GIF|*.GIF|*.BMP|*.BMP";

 if (ofd.ShowDialog() == DialogResult.OK)
 {
 string filePath = ofd.FileName;//圖片路徑
 FileStream fs = new FileStream(filePath, FileMode.Open);
 byte[] imageBytes = new byte[fs.Length];
 BinaryReader br = new BinaryReader(fs);
 imageBytes = br.ReadBytes(Convert.ToInt32(fs.Length));//圖片轉(zhuǎn)換成二進制流

 string strSql = string.Format("insert into [SBS].[dbo].[Model] ([M_QRCode],[M_Skills] ) values (@image,'2')");
 int count = Write(strSql,imageBytes );

 if (count > 0)
 {
 MessageBox.Show("success");
 }
 else
 {
 MessageBox.Show("failed");
 }
 }
 }

  數(shù)據(jù)庫連接和保存圖片語句:

private int Write(string strSql,byte[] imageBytes)
 {
 string connStr = "Data Source=192.168.4.132;initial Catalog=SBS;User ID=sa;Password=sa;";

 using (SqlConnection conn = new SqlConnection(connStr))
 {
 using (SqlCommand cmd = new SqlCommand(strSql, conn))
 {
 try
 {
 conn.Open();
 SqlParameter sqlParameter = new SqlParameter("@image", SqlDbType.Image);
 sqlParameter.Value = imageBytes;
 cmd.Parameters.Add(sqlParameter);
 int rows = cmd.ExecuteNonQuery();
 return rows;
 }
 catch (Exception e)
 {
 throw;
 }
 }
 }
 }

View Code

  2、從數(shù)據(jù)庫總讀取圖片

  從數(shù)據(jù)庫中讀取圖片字段,并轉(zhuǎn)換成內(nèi)存流生成bitmap。

  貼代碼: 

private void btnRead_Click(object sender, EventArgs e)
 {
 string strSql = string.Format("select M_QRCode from [SBS].[dbo].[Model] where M_id = 7");//圖片保存的字段是M_QRCode
 Read(strSql);
 }

 private void Read(string strSql)
 {
 string connStr = "Data Source=192.168.4.132;initial Catalog=SBS;User ID=sa;Password=sa;";

 using (SqlConnection conn = new SqlConnection(connStr))
 {
 using (SqlCommand cmd = new SqlCommand(strSql, conn))
 {
 conn.Open();
 SqlDataReader sqlDr = cmd.ExecuteReader();
 sqlDr.Read();
 byte[] images = (byte[])sqlDr["M_QRCode"];
 MemoryStream ms = new MemoryStream(images);
 Bitmap bmp = new Bitmap(ms);
 pictureBox1.Image = bmp;
 }
 }
 }

  3、根據(jù)圖片路徑顯示圖片

  這個比較簡單,直接貼出代碼 

private void btnLoad_Click(object sender, EventArgs e)
 {
 OpenFileDialog ofd = new OpenFileDialog();
 ofd.Filter = "*jpg|*.JPG|*.GIF|*.GIF|*.BMP|*.BMP";
 if (ofd.ShowDialog() == DialogResult.OK)
 {
 pictureBox1.Image = Image.FromFile(ofd.FileName);
 }
 }

  4、打印圖片

  打印圖片是在將圖片顯示在pictureBox的基礎(chǔ)上進行的。

  步驟:

  1、將printDocument控件拖到界面,添加打印代碼

  2、設(shè)置PrintDocument控件的Print_PrintPage事件

private void btnPrint_Click(object sender, EventArgs e)
 {
 PrintDialog printDialog = new PrintDialog();
 printDialog.Document = this.printDocument1;
 if (printDialog.ShowDialog() == DialogResult.OK)
 {
 try
 {
 printDocument1.Print();
 }
 catch (Exception ex)
 {
 printDocument1.PrintController.OnEndPrint(printDocument1, new System.Drawing.Printing.PrintEventArgs());
 }
 }
 }

 private void printDocument1_PrintPage(object sender, System.Drawing.Printing.PrintPageEventArgs e)
 {
 e.Graphics.DrawImage(pictureBox1.Image, 30, 30);
 }

  

  附帶著將圖片轉(zhuǎn)換成二進制和將二進制轉(zhuǎn)換成圖片專門寫出來,以便于查看?!?/p>

 public byte[] ConvertBinary(string filePath)
 {
 FileStream fs = new FileStream(filePath, FileMode.Open, FileAccess.Read);//以文件流形式讀取圖片
 BinaryReader br = new BinaryReader(fs);//轉(zhuǎn)換成二進制流
 byte[] imageBytes = br.ReadBytes((int)fs.Length);//保存到字節(jié)數(shù)組中

 return imageBytes;
 }

 public void ShowImage(byte[] imageBytes)
 {
 MemoryStream ms = new MemoryStream(imageBytes);
 pictureBox1.Image = Image.FromStream(ms);
 }

  在pictureBox中顯示圖片的三種方式: 

public void Method()
 {
 MemoryStream ms;
 pictureBox1.Image = Image.FromStream(ms);

 Bitmap bitmap;
 pictureBox1.Image = bitmap;

 string filePath;
 pictureBox1.Image = Image.FromFile(filePath);
 }

  winform中控件combobox控件使用: 

public void BindCombobox()
 {
 DataTable dt = new DataTable();
 dt.Columns.Add(new DataColumn("id", typeof(int)));
 dt.Columns.Add(new DataColumn("value", typeof(string)));

 for (int i = 0; i < 3; i++)
 {
 DataRow dr = dt.NewRow();
 dr["id"] = i;
 dr["value"] = 10 + i;
 dt.Rows.Add(dr);
 }

 this.comboBox1.DataSource = dt;
 this.comboBox1.DisplayMember = "value";
 this.comboBox1.ValueMember = "id"; 
 }

 public void ShowValue()
 {
 this.textBox1.Text = this.comboBox1.Text;
 this.textBox2.Text = this.comboBox1.SelectedValue.ToString();
 }

  

聲明:本網(wǎng)頁內(nèi)容旨在傳播知識,若有侵權(quán)等問題請及時與本網(wǎng)聯(lián)系,我們將在第一時間刪除處理。TEL:177 7030 7066 E-MAIL:11247931@qq.com

文檔

把圖片保存到數(shù)據(jù)庫中和從數(shù)據(jù)庫中讀取圖片

把圖片保存到數(shù)據(jù)庫中和從數(shù)據(jù)庫中讀取圖片:最近做到一個小項目,其中關(guān)系到圖片的一些操作。比如:將圖片保存到數(shù)據(jù)庫中、從數(shù)據(jù)庫中讀取圖片、顯示圖片、打印圖片等。此處對這些在項目中遇到的一些瑣碎知識加以總結(jié),以便日后查找。 1、將圖片作為其中的一個參數(shù)保存到數(shù)據(jù)庫中 在項目中,一般是將圖
推薦度:
標(biāo)簽: 保存 圖片 一個
  • 熱門焦點

最新推薦

猜你喜歡

熱門推薦

專題
Top