2011年1月16日 星期日

ASP儲存遠端圖片至網站

資料來源:http://www.pro-soho.com/Blog/article.asp?id=274

<%
'先下載遠端圖片
url="http://www.im286.com/images/im286/logo.gif" '遠端圖片位址
savepath="D:\photo\" '保存路徑
'為檔重命名
randomize
ranNum=int(999*rnd)
filename=year(now)&month(now)&day(now)&hour(now)&minute(now)&second(now)&ranNum
'為檔重命名結束
set xmlhttp=server.createobject("Microsoft.XMLHTTP")
xmlhttp.open "get",url,false
xmlhttp.send
img = xmlhttp.ResponseBody
set xmlhttp=nothing
set objAdostream=server.createobject("ADODB.Stream")
objAdostream.Open()
objAdostream.type=1
objAdostream.Write(img)
objAdostream.SaveToFile(savepath&filename&".jpg")
objAdostream.SetEOS
set objAdostream=nothing
'圖下載結束
Set Upload = Server.CreateObject("Persits.Upload") '打開物件
Set File = Upload.OpenFile(savepath&filename&".jpg") '打開已經保存的檔

If File.ImageType <> "JPG" and File.ImageType <> "GIF" and File.ImageType <> "BMP" and File.ImageType <> "PNG" Then
Upload.DeleteFile savepath&filename&".jpg" '如果格式不正確就刪除這張已下載的圖片
response.write "錯誤的圖片格式"
end if
'登出實例
Set Upload = nothing
Set File = nothing
%>

沒有留言: