ASP實(shí)現(xiàn)遠(yuǎn)程保存圖片
當(dāng)前位置:點(diǎn)晴教程→知識(shí)管理交流
→『 技術(shù)文檔交流 』
<%
'先下載遠(yuǎn)程圖片 url="http://www.webjx.com/images/logo.gif" '遠(yuǎn)程圖片地址 savepath="D:\photo\" '保存路徑 '為文件重命名 randomize ranNum=int(999*rnd) filename=year(now)&month(now)&day (now)&hour(now)&minute(now)&second (now)&ranNum '為文件重命名結(jié)束 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 '文件下載結(jié)束 Set Upload = Server.CreateObject("Persits.Upload") '打開對(duì)象 Set File = Upload.OpenFile(savepath&filename&".jpg") '打開已經(jīng)保存的文件 If File.ImageType <> "JPG" and File.ImageType <> "GIF" and File.ImageType <> "BMP" and File.ImageType <> "PNG" Then Upload.DeleteFile savepath&filename&".jpg" '如果格式不正確就刪除這張已下載的圖片 response.write "錯(cuò)誤的圖片格式" end if '注銷實(shí)例 Set Upload = nothing Set File = nothing %> 該文章在 2011/2/1 13:25:56 編輯過 |
關(guān)鍵字查詢
相關(guān)文章
正在查詢... |