圖片資料庫
① 圖片如何存入資料庫
通常對用戶上傳的圖片需要保存到資料庫中。解決方法一般有兩種:一種是將圖片保存的路徑存儲到資料庫;另一種是將圖片以二進制數據流的形式直接寫入資料庫欄位中。以下為具體方法:
一、保存圖片的上傳路徑到資料庫:
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;
採用倆種方式可以根據實際需求靈活選擇。
② 圖片存進資料庫
回答第二個問題:
要循環輸出圖片,可以用一個普通的HTTP處理文件,當有特定的路徑請求時,HTTP處理程序用於執行代碼
Handler.ashx
public class Handler : IHttpHandler {
public void ProcessRequest (HttpContext context) {
string imgId = context.Request.QueryString["imgId"];
SqlConnection conn = new SqlConnection("Data Source=.;Initial Catalog=Test;Integrated Security=True");
string strSql = "select * from ImageFiles where id="+ imgId;
SqlCommand cmd = new SqlCommand(strSql, conn);
conn.Open();
SqlDataReader reader = cmd.ExecuteReader();
if (reader.Read())
{
context.Response.ContentType = "image/jpeg";
context.Response.BinaryWrite((Byte[])reader["ImageFile"]);
context.Response.End();
reader.Close();
}
}
UpPhoto.aspx
<body>
<form id="form1" runat="server" enctype="multipart/form-data" >
<div>
<asp:FileUpload ID="UpPhoto" runat="server" />
<asp:Button ID="btnAdd" runat="server" Text="上傳" onclick="btnAdd_Click" />
<hr />
<asp:GridView ID="GridView1" runat="server" AutoGenerateColumns="False"
DataKeyNames="Id" DataSourceID="SqlDataSource1">
<Columns>
<asp:BoundField DataField="Id" HeaderText="Id" InsertVisible="False"
ReadOnly="True" SortExpression="Id" />
<asp:TemplateField>
<ItemTemplate>
<asp:Image ID="Image1" runat="server" ImageUrl='<%# Eval("Id","~/Handler.ashx?imgId={0}") %>' />
</ItemTemplate>
</asp:TemplateField>
</Columns>
</asp:GridView>
<asp:SqlDataSource ID="SqlDataSource1" runat="server"
ConnectionString="<%$ ConnectionStrings:TestConnectionString2 %>"
SelectCommand="SELECT * FROM [ImageFiles]"></asp:SqlDataSource>
</div>
</form>
</body>
UpPhoto.aspx.cs
public partial class _Default : System.Web.UI.Page
{
protected void Page_Load(object sender, EventArgs e)
{
}
protected void btnAdd_Click(object sender, EventArgs e)
{
HttpPostedFile hpf = UpPhoto.PostedFile;
int upPhotoLength = hpf.ContentLength;
byte[] PhotoArray = new byte[upPhotoLength];
Stream PhotoStream = hpf.InputStream;
PhotoStream.Read(PhotoArray, 0, upPhotoLength);
SqlConnection conn = new SqlConnection("Data Source=.;Initial Catalog=Test;Integrated Security=True");
string strSql = "insert into ImageFiles values(@image)";
SqlCommand cmd = new SqlCommand(strSql, conn);
cmd.Parameters.Add("@image", SqlDbType.Image).Value = PhotoArray;
conn.Open();
cmd.ExecuteNonQuery();
conn.Close();
GridView1.DataBind();
}
}
我的資料庫用sql2005,叫TEST只有一個欄位Image類型存放圖片
③ 資料庫表中的圖片是什麼類型
資料庫表中的圖片是image類型。
資料庫表中的Image數據類型可以進行數據圖片的存儲。保存的是二進制位元組,所以寫入資料庫Image數據類型時,資料庫自動將圖片轉換成二進制位元組後存入。從資料庫Image數據類型讀取內容時,則是將二進制位元組先轉換成圖片,再輸出。
(3)圖片資料庫擴展閱讀:
如果SQL Server是預設安裝時, IMAGE類型欄位是有長度限制,用來存儲圖片大小不超過2g的圖片。缺點是佔用了很大的數據存儲空間。但是對於之前的存儲物理路徑來說讀取圖片和存儲圖片方便了很多。
IMAGE類型欄位如果寫入的數據超過長度限制就會拋出異常,預設的長度限制是65536,需要修改資料庫的全局配置參數才可以擴大IMAGE類型欄位的存儲空間。
④ [圖片][圖片][圖片]這個使用什麼資料庫
一般的做法是,圖片放在網站的一個目錄里,如/image,
存儲圖片就是存儲圖片所在網站的路徑,譬如:
有一個圖片是a.jpg,它在根目錄下的image文件夾里,那麼它的路徑就是/image/a.jpg,把這個路徑存在
資料庫中。讀取圖片內容時,吧這個路徑賦值給<img>的src屬性即可
⑤ 圖片如何存入資料庫
1、新建一個資料庫,資料庫名為Image,表名為image。並為表添加ID,tupian兩個列。
⑥ 圖片資料庫如何設計
A表為明細信息,B表是圖冊,屬於匯總信息
多對一的關系
所以A表增加欄位,記錄圖冊編號就可以了
⑦ 如何製作圖片資料庫
可以使用VB,用VB把圖片放到ACCESS中,然後再讀取出來,實際上是個很簡單的小程序:
Dim cc() As Byte
Dim i
Dim t
Private Sub Command1_Click()
CommonDialog1.Filter = "JPG圖片(*.BMP)|*.BMP"
CommonDialog1.ShowOpen
If CommonDialog1.FileName <> "" Then
Picture1.Picture = LoadPicture(CommonDialog1.FileName)
strname = CommonDialog1.FileName
Open strname For Binary As #1
ReDim cc(LOF(1) - 1)
t = cc(LOF(1) - 1) '在讀取二進制時,如果是用文件操作那麼涉及到到底從文件中取多少位元組的問題,所以位元組數組要指定大小
Get #1, , cc
Close
Else
MsgBox "沒有選中圖片"
End If
End Sub
Private Sub Command2_Click()
Adodc1.Refresh
Adodc1.Recordset.AddNew
Adodc1.Recordset.Fields("id") = i
Adodc1.Recordset.Fields("qq") = cc
i = i + 1
Adodc1.Recordset.Update
Adodc1.Refresh
End Sub
Private Sub Command3_Click()
Adodc1.Refresh
Dim P() As Byte
Adodc1.RecordSource = "select qq from 表一 where id='" & Text1.Text & "'"
P = Adodc1.Recordset.Fields("qq") '當把一組二進制數據賦值給一個二進制數組時就不用指定數組的大小了,因為是全部賦值
Open App.Path & "\oo.bmp" For Binary As #1
Put #1, , P
Close
End Sub
Private Sub Command4_Click()
Open App.Path & "\oo.bmp" For Binary As #1
Put #1, , cc
Close
End Sub
Private Sub Form_Load()
i = 1
End Sub
⑧ 圖片資料庫怎麼建立
在建立資料庫是應該想好各個數據之間的關系,需要存儲哪些數據,這些數據直接是一對一,一對多還是多對一得關系。一般保存圖片數據的話不建議直接保存圖片,而建議保存圖片的地址,大致需要這么幾個欄位,主鍵,圖片的絕對地址,圖片的大小,圖片的名稱等等
⑨ 圖片如何存儲在資料庫當中
頭條的文件就存在資料庫,可能他們取出來就是二進制吧,播放器可以解碼