亚洲乱码中文字幕综合,中国熟女仑乱hd,亚洲精品乱拍国产一区二区三区,一本大道卡一卡二卡三乱码全集资源,又粗又黄又硬又爽的免费视频

利用ASPUPLOAD,ASPJPEG實(shí)現(xiàn)圖片上傳自動(dòng)生成縮略圖及加上水印

 更新時(shí)間:2007年02月15日 00:00:00   作者:  

今天在站長(zhǎng)站看到一網(wǎng)友寫(xiě)的相冊(cè)程序,功能挺簡(jiǎn)單的,看到他用了ASPJPEG生成縮略圖,不由想起再用上ASPUPLOAD上傳,于是花了一個(gè)小時(shí)時(shí)間完善了他的代碼。

以下代碼均加有簡(jiǎn)單的注釋?zhuān)绻憧床欢?,?qǐng)先看ASPJPEG以及ASPUPLOAD的說(shuō)明文檔(E文,希望有心理準(zhǔn)備),看不懂的可以問(wèn)我。

以下是代碼: 

復(fù)制代碼 代碼如下:

<% 
if session("admin")<>"on" then 
Response.Redirect"login.asp" 
end if 
%> 
<!--#include file="config.asp" --> 
<!--#include file="mdb/conn.asp" --> 

<% 
Set Upload = Server.CreateObject("Persits.Upload") 

 FilePath=Server.MapPath(".") 

   Count = Upload.Save(FilePath&BigPhotoPath) '傳大圖 

 SmallFilePath=FilePath & SmallPhotoPath 

 For Each File in Upload.Files 

 Set Jpeg = Server.CreateObject("Persits.Jpeg") 
 Jpeg.Open (File.Path) 

BigFP=BigPhotoPath&(File.FileName) '大圖相對(duì)路徑 
SFP=SmallPhotoPath&"S_"&(File.FileName)'小圖相對(duì)路徑 
FileSize=File.Size'備寫(xiě)入數(shù)據(jù)庫(kù) 


 '開(kāi)始判斷哪邊為長(zhǎng)邊,以長(zhǎng)邊進(jìn)行縮放,并生成小圖 
 imgWidth=Jpeg.OriginalWidth 
 imgHeight=Jpeg.OriginalHeight 

 if imgWidth>=imgHeight and imgWidth>120 then  
 Jpeg.Width=150 
 Jpeg.Height=Jpeg.OriginalHeight/(Jpeg.OriginalWidth/150) 
 end if 
 if imgHeight>imgWidth and imgHeight>113 then  
 Jpeg.Height=113 
 Jpeg.Width=Jpeg.OriginalWidth/(Jpeg.OriginalHeight/113) 
 end if 
Jpeg.Sharpen 1, 130 
Jpeg.Save (SmallFilePath&"S_"&File.FileName) 


'給大圖加上水印(僅對(duì)大圖加水印) 
Jpeg.Open Server.MapPath(""&BigFP&"") 

Jpeg.Canvas.Font.Color = &HFF0000 
Jpeg.Canvas.Font.Family = "Courier New" 

Jpeg.Canvas.Pen.Color = &H000000 
Jpeg.Canvas.Pen.Width = 2 

Jpeg.Canvas.Brush.Solid = False 
Jpeg.Canvas.Font.BkMode = "Opaque" '處理平滑 

Jpeg.Canvas.PrintText 10, 10, "www.LuanLuan.cn" 
'Jpeg.Canvas.DrawBar 1, 1, 100, 100 

Jpeg.Save Server.MapPath(BigFP) 
Next 

strSQL= "insert into desktop ([name],typeid,zhuanti,jj,[time],imgh,imgw,filesize,url,surl) values ('"&Upload.Form("name")&"','"&Upload.Form("typeid")&"','"&Upload.Form("zhuanti")&"','"&Upload.Form("photointro")&"','"&Now()&"','"&imgheight&"','"&imgwidth&"','"&FileSize &"','"&BigFP&"','"&SFP&"')" 
conn.execute strSQL 

set upload=nothing  '刪除對(duì)象 
typeid=Request.QueryString("typeid") 
response.write "<SCRIPT language=JavaScript>alert('文件上傳成功,返回!');" 
response.write "this.location.href='addfile.asp?typeid="&typeid&"';</SCRIPT>" 

function HTMLEncode2(fString) 
fString = Replace(fString, CHR(13), "") 
fString = Replace(fString, CHR(10) & CHR(10), "</P><P>") 
fString = Replace(fString, CHR(10), "<BR>") 
HTMLEncode2 = fString 
end function 
%> 



相關(guān)文章

最新評(píng)論