本文整理自网络,侵删。
procedure TfrmMain.DomImg2Image(wb:TWebBrowser);var i:Integer; rang:IHTMLControlRange; s:string;begin try s := (IHTMLDocument2(wb.Document).images.item('pic',EmptyParam) as IHTMLElement).getAttribute('src',0); rang:=((IHTMLDocument2(wb.Document).body as HTMLBody).createControlRange)as IHTMLControlRange; rang.add(IHTMLDocument2(wb.Document).images.item('pic',EmptyParam)as IHTMLControlElement); rang.execCommand('Copy',False,0); image1.Picture.Assign(ClipBoard); except end;end;
相关阅读 >>
Delphi sysutils.isdelimiter - 判断字符串的某个位置是不是指定的字符串
Delphi tms web core webmemo 横竖滚动条
Delphi自动以管理员身份在vista 和 windows7 下运行程序
更多相关阅读请进入《Delphi》频道 >>