直播中
現(xiàn)在假設(shè)在數(shù)據(jù)庫中保存的是你所想要的圖形格式
(GIF, JPEG, BMP, TIFF, 等等等等)現(xiàn)在來看看要怎么把它們從
數(shù)據(jù)庫中讀出來。
在ACCESS中使用了兩個關(guān)鍵的技術(shù)來保存圖形
1。使用了bmp格式
2。78個字節(jié)的文件頭
<%
response.Expires = 0
response.Buffer = True
response.Clear
response.contentType = "image/bmp"
%>
接著你要干的就是去掉那78個字節(jié)的OLE對象的文件頭。
<%
Const OLEHEADERSIZE = 78
nFieldSize = rs("photo").ActualSize
oleHeader = rs("photo").GetChunk(OLEHEADERSIZE)
imageBytes = rs("photo").GetChunk(nFieldSize - OLEHEADERSIZE)
Response.BinaryWrite imageBytes
%>
現(xiàn)在舉一個例子:
如果你要得到一個職工的信息,這段信息包括一個介紹和他的圖象。
并且要同時顯示文字和圖形。
代碼如下:(其中的theImg是一個代理頁面)
theImg.asp
<%
response.Expires = 0
response.Buffer = True
response.Clear
response.contentType = Session("ImageType")
response.BinaryWrite Session("ImageBytes")
Session("ImageType") = ""
Session("ImageBytes") = ""
response.End
%>
Function SetImageForDisplay(field, contentType)
OLEHEADERSIZE = 78
contentType = LCase(contentType)
select case contentType
case "gif", "jpeg", "bmp"
contentType = "image/" & contentType
bytes = field.value
case "ole"
contentType = "image/bmp"
nFieldSize = field.ActualSize
oleHeader = field.GetChunk(OLEHEADERSIZE)
bytes = field.GetChunk(nFieldSize - OLEHEADERSIZE)
end select
Session("imageBytes") = bytes
Session("imageType") = contentType
End Function
'注意的是,程序中只使用了4中格式:gif, jpeg, bmp , ole .
<%
sql = "select * from Employees"
Set oRS = Server.CreateObject("ADODB.Recordset")
oRS.CursorLocation = 3
oRS.Open sql, "DSN=NW"
SetImageForDisplay oRS("photo"), "ole"
Set oRS.ActiveConnection = Nothing
%>
要顯示圖象的話,只需要在另外一個asp中,假設(shè)為getEmpInfo.asp中
<img src="theImg.asp"</img>
但這還有一個問題,因為對每個職工的圖形都使用了同一個"theImg.asp"
文件,應(yīng)該再小小修改一下:
<img src="theImg.asp?temp=<%= Request.Form("empLastName")%>"</img>
最后再說一點,如何顯示多幅圖象呢?
也就是說如果數(shù)據(jù)庫中有多個字段都保存了圖形,怎么辦?
其實解決辦法很簡單,只要給SetImageForDisplay多加一個參數(shù)
就是用來保存圖形的一個session變量。
例如:
SetImageForDisplay oRS1("photo"), "ole", "empPhoto"
SetImageForDisplay oRS2("logo"), "gif", "compLogo"
<img src="theImg2.asp?varName=empPhoto&temp=<%= Request.Form("empLastName")%>">
<img src="theImg2.asp?varName=compLogo&temp=<%= Request.Form("imgCode")%>">
使用這個方法能夠完成下面的功能:
1。能夠從數(shù)據(jù)庫中取出圖形字段。(你唯一需要知道的是數(shù)據(jù)庫中的圖形是什么格式
bmp?gif?jpeg?ole?)
2.采用session變量 來保存圖形的字節(jié)數(shù)和content type
asp需要這些信息來聯(lián)結(jié)到<IMG>中的屬性
3。只要把theImg放到你想顯示圖形的地方,就能夠顯示圖象了。