本帖最后由 kevinch 于 2014-12-5 21:43 编辑 $url="http://www.autoitx.com/templates/thesnoW/images/logo.png"
$xmlhttp=ObjCreate("msxml2.xmlhttp")
If IsObj($xmlhttp) Then
$xmlhttp.open("GET",$url,True)
$xmlhttp.send
While $xmlhttp.readystate<>4
Sleep(100)
WEnd
If $xmlhttp.status=200 Then
$tmp=StringRegExp($xmlhttp.getresponseheader("Content-Type"),"(?is)image\/(.+)",3)
If IsArray($tmp) Then
$file=FileOpen(@ScriptDir&"\temp."&$tmp[0],2+8+16)
FileWrite($file,$xmlhttp.responsebody)
FileClose($file)
ShellExecute(@ScriptDir&"\temp."&$tmp[0])
EndIf
EndIf
EndIf
这个试一下 |