各位帮忙看下,这个网站中不缓存到临时文件夹的验证码图片怎样才能保存到本地?  
   
 https://esales.9you.com/include/verify.php
   
  非常感谢!用下面的方法获取不到啊!提示IOHandler value is not valid.procedure TForm1.Button2Click(Sender: TObject);
var s:string;var t:TmemoryStream;
Begin
    t:=TmemoryStream.Create;
  s:= ' ';
  t.clear;
   idhttp1:=TIdHTTP.Create(nil);
idhttp1.Get( 'https://esales.9you.com/include/verify.php ',t);
t.Position:=0;
application.ProcessMessages;
s:=GetTmpFileName(true, '~~ ', '.bmp ');
t.SaveToFile(s);
t.SaveToFile( 'c:\1.bmp ');
t.Free;
idhttp1.Free;
image1.Picture.LoadFromFile(s);
End;