將圖片存到資料庫
1. 圖片如何存入資料庫
通常對用戶上傳的圖片需要保存到資料庫中。解決方法一般有兩種:一種是將圖片保存的路徑存儲到資料庫;另一種是將圖片以二進制數據流的形式直接寫入資料庫欄位中。以下為具體方法:
一、保存圖片的上傳路徑到資料庫:
string uppath="";//用於保存圖片上傳路徑
//獲取上傳圖片的文件名
string fileFullname = this.FileUpload1.FileName;
//獲取圖片上傳的時間,以時間作為圖片的名字可以防止圖片重名
string dataName = DateTime.Now.ToString("yyyyMMddhhmmss");
//獲取圖片的文件名(不含擴展名)
string fileName = fileFullname.Substring(fileFullname.LastIndexOf("\\") + 1);
//獲取圖片擴展名
string type = fileFullname.Substring(fileFullname.LastIndexOf(".") + 1);
//判斷是否為要求的格式
if (type == "bmp" || type == "jpg" || type == "jpeg" || type == "gif" || type == "JPG" || type == "JPEG" || type == "BMP" || type == "GIF")
{
//將圖片上傳到指定路徑的文件夾
this.FileUpload1.SaveAs(Server.MapPath("~/upload") + "\\" + dataName + "." + type);
//將路徑保存到變數,將該變數的值保存到資料庫相應欄位即可
uppath = "~/upload/" + dataName + "." + type;
}
二、將圖片以二進制數據流直接保存到資料庫:
引用如下命名空間:
using System.Drawing;
using System.IO;
using System.Data.SqlClient;
設計資料庫時,表中相應的欄位類型為iamge
保存:
//圖片路徑
string strPath = this.FileUpload1.PostedFile.FileName.ToString ();
//讀取圖片
FileStream fs = new System.IO.FileStream(strPath, FileMode.Open, FileAccess.Read);
BinaryReader br = new BinaryReader(fs);
byte[] photo = br.ReadBytes((int)fs.Length);
br.Close();
fs.Close();
//存入
SqlConnection myConn = new SqlConnection("Data Source=.;Initial Catalog=stumanage;User ID=sa;Password=123");
string strComm = " INSERT INTO stuInfo(stuid,stuimage) VALUES(107,@photoBinary )";//操作資料庫語句根據需要修改
SqlCommand myComm = new SqlCommand(strComm, myConn);
myComm.Parameters.Add("@photoBinary", SqlDbType.Binary, photo.Length);
myComm.Parameters["@photoBinary"].Value = photo;
myConn.Open();
if (myComm.ExecuteNonQuery() > 0)
{
this.Label1.Text = "ok";
}
myConn.Close();
讀取:
...連接資料庫字元串省略
mycon.Open();
SqlCommand command = new
SqlCommand("select stuimage from stuInfo where stuid=107", mycon);//查詢語句根據需要修改
byte[] image = (byte[])command.ExecuteScalar ();
//指定從資料庫讀取出來的圖片的保存路徑及名字
string strPath = "~/Upload/zhangsan.JPG";
string strPhotoPath = Server.MapPath(strPath);
//按上面的路徑與名字保存圖片文件
BinaryWriter bw = new BinaryWriter(File.Open(strPhotoPath,FileMode.OpenOrCreate));
bw.Write(image);
bw.Close();
//顯示圖片
this.Image1.ImageUrl = strPath;
採用倆種方式可以根據實際需求靈活選擇。
2. 如何把圖片保存到SQL Server資料庫
第一步:
//獲取當前選擇的圖片 this.pictureBox1.Image = Image.FromStream(this.openFileDialog1.OpenFile()); //獲取當前圖片的路徑 string path = openFileDialog1.FileName.ToString(); //將制定路徑的圖片添加到FileStream類中 FileStream fs = new FileStream(path, FileMode.Open, FileAccess.Read); //通過FileStream對象實例化對象 BinaryReader br = new BinaryReader(fs); //通過BinaryReader類對象的ReadBytes()方法將FileStream類對象轉化為二進制數組 byte[] imgBytesIn = br.ReadBytes(Convert.ToInt32(fs.Length));
第二步: //將圖片添加到資料庫中 string sql="insert into pic values(@pic)"; SqlParameter[] param = new SqlParameter[] { new SqlParameter("@pic", imgBytesIn) }; DBHelper.GetExecuteQuery(sql, param);
第三步: //將圖片從資料庫中取出 string sql="select * from pic where id=0"; SqlDataReader reader = DBHelper.GetExecuteReader(sql, null); MemoryStream mss = null; if (reader.Read()) { byte[] bytes = (byte[])reader["pic"]; mss = new MemoryStream(bytes); }
this.pictureBox2.Image = Image.FromStream(mss);
以上是復制來的,但是一般不需要這么做,只需要把圖片路徑保存就可以了
this.photo.PostedFile.SaveAs(path + "名字.格式");
然後把路徑存入資料庫
如果存那種image格式放入資料庫,圖片多的時候就會給資料庫造成負擔。
3. 如何將圖片存到資料庫中
保存圖片到資料庫中,有兩種方法:
1、一種是用大對象,即blob型,對c#不了解,但是java、c++中都有專門操作blob的對象,應該是以二進制流的方式走的。但是不建議採用這樣的管理方式,會加重資料庫、程序負擔,即使是手機開發也是如此。
2、圖片保存在本地,資料庫中用字元串存儲地址,這樣的方式比較好,也較易實現。但是缺乏安全性,把圖片重命名就行了,改個後綴,一般人就不會打開。還是不放心,用二進制加密下就好,這樣的程序代價仍然要比存在資料庫大對象中要好。
4. 如何將圖片轉換存入到資料庫中,並從資料庫中
你自己做個小程序,分別連接兩個資料庫,然後從一個庫倒到另一個就ok了!
5. 如何將圖片存入資料庫
圖片存入資料庫,你說的是存放圖片的二進制編碼,資料庫中知道為二進制,然後表單提交以二進制模式
6. 怎麼樣把圖片存放到SQL SERVER 資料庫中
通常對用戶上傳的圖片需要保存到資料庫中。解決方法一般有兩種:一種是將圖片保存的路徑存儲到資料庫;另一種是將圖片以二進制數據流的形式直接寫入資料庫欄位中。以下為具體方法:
一、保存圖片的上傳路徑到資料庫:
string uppath="";//用於保存圖片上傳路徑
//獲取上傳圖片的文件名
string fileFullname = this.FileUpload1.FileName;
//獲取圖片上傳的時間,以時間作為圖片的名字可以防止圖片重名
string dataName = DateTime.Now.ToString("MMddhhmmss");
//獲取圖片的文件名(不含擴展名)
string fileName = fileFullname.Substring(fileFullname.LastIndexOf("\\") + 1);
//獲取圖片擴展名
string type = fileFullname.Substring(fileFullname.LastIndexOf(".") + 1);
//判斷是否為要求的格式
if (type == "bmp" || type == "jpg" || type == "jpeg" || type == "gif" || type == "JPG" || type == "JPEG" || type == "BMP" || type == "GIF")
{
//將圖片上傳到指定路徑的文件夾
this.FileUpload1.SaveAs(Server.MapPath("~/upload") + "\\" + dataName + "." + type);
//將路徑保存到變數,將該變數的值保存到資料庫相應欄位即可
uppath = "~/upload/" + dataName + "." + type;
}
二、將圖片以二進制數據流直接保存到資料庫:
引用如下命名空間:
using System.Drawing;
using System.IO;
using System.Data.SqlClient;
設計資料庫時,表中相應的欄位類型為iamge
保存:
//圖片路徑
string strPath = this.FileUpload1.PostedFile.FileName.ToString ();
//讀取圖片
FileStream fs = new System.IO.FileStream(strPath, FileMode.Open, FileAccess.Read);
BinaryReader br = new BinaryReader(fs);
byte[] photo = br.ReadBytes((int)fs.Length);
br.Close();
fs.Close();
//存入
SqlConnection myConn = new SqlConnection("Data Source=.;Initial Catalog=stumanage;User ID=sa;Password=123");
string strComm = " INSERT INTO stuInfo(stuid,stuimage) VALUES(107,@photoBinary )";//操作資料庫語句根據需要修改
SqlCommand myComm = new SqlCommand(strComm, myConn);
myComm.Parameters.Add("@photoBinary", SqlDbType.Binary, photo.Length);
myComm.Parameters["@photoBinary"].Value = photo;
myConn.Open();
if (myComm.ExecuteNonQuery() > 0)
{
this.Label1.Text = "ok";
}
myConn.Close();
讀取:
...連接資料庫字元串省略
mycon.Open();
SqlCommand command = new
SqlCommand("select stuimage from stuInfo where stuid=107", mycon);//查詢語句根據需要修改
byte[] image = (byte[])command.ExecuteScalar ();
//指定從資料庫讀取出來的圖片的保存路徑及名字
string strPath = "~/Upload/zhangsan.JPG";
string strPhotoPath = Server.MapPath(strPath);
//按上面的路徑與名字保存圖片文件
BinaryWriter bw = new BinaryWriter(File.Open(strPhotoPath,FileMode.OpenOrCreate));
bw.Write(image);
bw.Close();
//顯示圖片
this.Image1.ImageUrl = strPath;
採用倆種方式可以根據實際需求靈活選擇。
7. 怎樣把圖片存入SQL資料庫表中
圖片存入資料庫中,是以二進制字元串存入資料庫的,讀取圖片的時候要二進制轉換成Image,然後顯示到前台的。
8. 圖片如何存入資料庫
1、新建一個資料庫,資料庫名為Image,表名為image。並為表添加ID,tupian兩個列。
9. 怎樣把圖片存入SQL資料庫表中
將圖片存入SQL資料庫中一般分兩種情況
一、把圖片轉換成二進制形式存儲在資料庫中
一般資料庫提供一個二進制欄位來存儲二進制數據。如SQLServer中的BINARY,VARBINARY;
1、BINARY數據類型用於存儲二進制數據。其定義形式為BINARY(n),n表示數據的長度,取值為1到8000。在使用時必須指定BINARY類型數據的大小,至少應為1個位元組。BINARY類型數據佔用n+4個位元組的存儲空間。在輸入數據時必須在數據前加上字元「0X」作為二進制標識,如:要輸入「abc」則應輸入「0xabc」。若輸入的數據過長將會截掉其超出部分。若輸入的數據位數為奇數,則會在起始符號「0X」後添加一個0,如上述的「0xabc」會被系統自動變為「0x0abc」。
2、VARBINARY數據類型的定義形式為VARBINARY(n)。它與BINARY類型相似,n的取值也為1到8000,若輸入的數據過長,將會截掉其超出部分。不同的是VARBINARY數據類型具有變動長度的特性,因為VARBINARY數據類型的存儲長度為實際數值長度+4個位元組。當BINARY數據類型允許NULL值時,將被視為VARBINARY數據類型。
一般情況下,由於BINARY數據類型長度固定,因此它比VARBINARY類型的處理速度快
二、圖片存儲在磁碟上,資料庫欄位中保存的是圖片的路徑
存儲路徑存儲路徑字元串即可,sql中可以使用varchar/nvarchar;
總結:將圖片文件直接以二進制存儲資料庫需要將圖片提前轉為二進制數據,以存儲圖片物理路徑的方式需要將圖片文件放置指定位置,這都需要配合不同的編程語言實現;
以C#為例:
//點擊按鈕執行存入
privatevoidbtnWrite_Click(objectsender,EventArgse)
{
OpenFileDialogofd=newOpenFileDialog();
ofd.Filter="*jpg|*.JPG|*.GIF|*.GIF|*.BMP|*.BMP";
if(ofd.ShowDialog()==DialogResult.OK)
{
stringfilePath=ofd.FileName;//圖片路徑
FileStreamfs=newFileStream(filePath,FileMode.Open);//讀取圖片流
byte[]imageBytes=newbyte[fs.Length];
BinaryReaderbr=newBinaryReader(fs);
imageBytes=br.ReadBytes(Convert.ToInt32(fs.Length));//圖片轉換成二進制流
stringstrSql=string.Format("insertinto[SBS].[dbo].[Model]([M_QRCode],[M_Skills])values(@image,'2')");
intcount=Write(strSql,imageBytes);
if(count>0)
{
MessageBox.Show("success");
}
else
{
MessageBox.Show("failed");
}
}
}
//資料庫連接和保存圖片語句
privateintWrite(stringstrSql,byte[]imageBytes)
{
stringconnStr="DataSource=資料庫地址;initialCatalog=SBS;UserID=sa;Password=sa;";
using(SqlConnectionconn=newSqlConnection(connStr))
{
using(SqlCommandcmd=newSqlCommand(strSql,conn))
{
try
{
conn.Open();//打開資料庫鏈接
SqlParametersqlParameter=newSqlParameter("@image",SqlDbType.Image);
sqlParameter.Value=imageBytes;
cmd.Parameters.Add(sqlParameter);
introws=cmd.ExecuteNonQuery();//執行插入操作
returnrows;
}
catch(Exceptione)
{
throw;
}
}
}
}
10. 怎麼把圖片保存到資料庫里
把你的圖片放在你項目的根目錄下面,把路徑保存在資料庫中。。資料庫一般不是用來放圖片的,如果你是做網站,你的空間根本不夠放那麼多。。建議你還是在資料庫中保存你圖片的地址