作者热门文章
- objective-c - iOS 5 : Can you override UIAppearance customisations in specific classes?
- iphone - 如何将 CGFontRef 转换为 UIFont?
- ios - 以编程方式关闭标记的信息窗口 google maps iOS
- ios - Xcode 5 - 尝试验证存档时出现 "No application records were found"
有没有一种方法可以在不使用任何网络浏览器控件的情况下在 Canvas 上绘制特定的 HTML 元素内容?
使用这段代码,我将元素呈现到表单的 Canvas 上(仅作为示例)。
它虽然有效,但这段代码不是一个好的做法 - 见下文,为什么......
uses
SHDocVw, MSHTML;
procedure TForm1.Button1Click(Sender: TObject);
var
WebBrowser: TWebBrowser;
HTMLElement: IHTMLElement;
HTMLRenderer: IHTMLElementRender;
begin
WebBrowser := TWebBrowser.Create(nil);
try
WebBrowser.ParentWindow := Application.Handle;
WebBrowser.Navigate('https://stackoverflow.com/questions/2975586/good-delphi-blogs');
while WebBrowser.ReadyState < READYSTATE_COMPLETE do
Application.ProcessMessages;
HTMLElement := (WebBrowser.Document as IHTMLDocument3).getElementById('question');
HTMLRenderer := (HTMLElement as IHTMLElementRender);
HTMLRenderer.DrawToDC(Canvas.Handle);
finally
HTMLElement := nil;
HTMLRenderer := nil;
WebBrowser.Free;
end;
end;
不好是因为
是否有使用 MSHTML 解决此问题的简洁方法?
最佳答案
DrawToDC 和 IViewObject两者都需要 TWebBrowser 控件将文档实际呈现到目标 DC。
关于html - 如何在不使用网络浏览器的情况下呈现 HTML 元素?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8312170/
我是一名优秀的程序员,十分优秀!