在使用ASP的時候,我們時常要借助第三方控件來實現一些圖象功能。而現在,ASP.NET的推出,我們已經沒有必要再使用第三方控件來實現,因為ASP.NET已經具有強大的功能來實現一些圖象處理。現在,我們就來看看怎樣使用ASP.NET的這一強大功能。
一、System.Drawing的使用
以下的舉例將演示在內存中生成一張圖片,然後,將這張圖片通過網頁顯示出來。需要了解的是,我們這裡輸出的不是HTML效果,而是實實在在的圖片(圖象),我們可以使用“另存為…”將輸出圖象保存起來。
我們先來看看效果:
我們看到,這張圖片是一個漸變背景上有“看見了嗎”幾個字,當然,這個效果在PhotoShop等圖象處理軟件裡面很容易實現,但是,一些與數據庫結合 的應用我們不可能將所有圖片都事先設計出來,這時候,利用ASP.NET來實現這些功能就顯得很重要了。我們來看源代碼:
<%@pagelanguage="vb"contenttype="image/jpeg"%>
<%@importnamespace="system.drawing"%>
<%@importnamespace="system.drawing.imaging"%>
<%@importnamespace="system.drawing.drawing2d"%>
<%
'清空Response
response.clear
'建立一個120*30大小,24bit的BMP圖象;
dimimgOutputasNewbitmap(120,30,pixelformat.format24bpprgb)
'根據以上BMP建立一個新圖象;
dimgasgraphics=graphics.fromimage(imgOutput)
g.clear(color.Green)
g.smoothingMode=smoothingMode.antiAlias
g.drawString("看見了嗎?",Newfont("黑體",16,fontstyle.bold),newSolidBrush(Color.White),NewpointF(2,4))
g.FillRectangle(NewlinearGradientBrush(Newpoint(0,0),Newpoint(120,30),color.fromArgb(0,0,0,0),
color.fromArgb(255,255,255,255)),0,0,120,30)
imgOutput.save(response.outputstream,imageformat.jpeg)
g.dispose()
imgOutput.dispose()
response.end
%>
在以上代碼中,我們看到和數據庫程序不同,這裡專門引入了圖象處理的名字空間system.drawing等。程序首先清空了Response,確保沒 有輸出;然後,程序建立了一個120乘30大的BMP圖象,再在這個基礎上建立一個新圖象,建立圖象以後,我們首先“畫”出了字符串“看見了嗎”,該字符 串為16大粗黑體,顏色為白色,位置為(2,4);最後,我們實現漸變效果。
以上舉例很簡單,但是如果和數據庫結合,我們可以實現很多使用ASP可能不敢想的效果。
二、讀取和改變圖象文件大小
讀取圖片?直接使用HTML不就可以了?當然可以,我們這裡只是提供一種選擇和方法來實現這一功能,具體這一功能的使用,我們可能需要在實踐中更多的學習。先來看程序源代碼:
<%'importallrelevantnamespaces%>
<%@importnamespace="System"%>
<%@importnamespace="System.Drawing"%>
<%@importnamespace="System.Drawing.Imaging"%>
<%@importnamespace="System.IO"%>
<scriptrunat="server">
SubsendFile()
dimgasSystem.Drawing.Image=System.Drawing.Image.FromFile(server.mappath(request("src")))
dimthisFormat=g.rawformat
dimimgOutputasNewBitmap(g,cint(request("width")),cint(request("height")))
ifthisformat.equals(system.drawing.imaging.imageformat.Gif)then
response.contenttype="image/gif"
else
response.contenttype="image/jpeg"
endif
imgOutput.save(response.outputstream,thisformat)
g.dispose()
imgOutput.dispose()
endsub
SubsendError()
dimimgOutputasNewbitmap(120,120,pixelformat.format24bpprgb)
dimgasgraphics=graphics.fromimage(imgOutput)
g.clear(color.yellow)
g.drawString("錯誤!",Newfont("黑體",14,fontstyle.bold),systembrushes.windowtext,NewpointF(2,2))
response.contenttype="image/gif"
imgOutput.save(response.outputstream,imageformat.gif)
g.dispose()
imgOutput.dispose()
endsub
</script>
<%
r