我正在尝试制作一个程序,该程序将在TWebBrowser
组件中加载网站上各个区域的屏幕截图。
到目前为止,我只找到了“如何制作整页屏幕截图”的解决方案,但我无法使其捕捉特定区域,它只是向任何方向拉伸页面。
http://www.delphifaq.com/faq/f408.shtml
我一直在使用上面网站上提供的代码。
有没有办法修改代码,以便它能满足我的需求?我试过但我失败了。
如果有人能至少给我一个如何解决这个问题的指示,我将不胜感激。
由于
答案 0 :(得分:4)
我建议使用HTML Elemwnt的IHTMLElementRender
界面。您可以轻松找到光标下的元素并将其渲染为位图。
在我的TWebBrowser descant中,我实现了这样:
function TWebBrowserIBMA.ElementAsBitmap(pElement : IHTMLElement2) : TBitmap;
var
pRender : IHTMLElementRender;
oBmpPart : TBitmap;
nClientWidth : Integer;
nClientHeight : Integer;
nX : Integer;
nLastX : Integer;
bDoneX : Boolean;
nY : Integer;
nLastY : Integer;
bDoneY : Boolean;
begin
Result := TBitmap.Create;
try
Result.Height := pElement.scrollHeight;
Result.Width := pElement.scrollWidth;
except
exit;
end;
LockWindowUpdate(Handle);
if (pElement.QueryInterface(IID_IHTMLElementRender, pRender) = S_OK) then begin
try
oBmpPart := TBitmap.Create;
oBmpPart.Width := pElement.scrollWidth;
oBmpPart.Height := pElement.scrollHeight;
nClientWidth := pElement.clientWidth;
nClientHeight := pElement.clientHeight;
try
nX := pElement.scrollWidth;
nLastX := -1;
bDoneX := false;
while not bDoneX do begin
pElement.scrollLeft := nX;
nX := pElement.scrollLeft;
if nLastX = -1 then begin
nLastX := nX + nClientWidth;
end;
nY := pElement.scrollHeight;
nLastY := (-1);
bDoneY := false;
while not bDoneY do begin
pElement.scrollTop := nY;
nY := pElement.scrollTop;
if nLastY = -1 then begin
nLastY := nY + nClientHeight;
end;
if (pRender.DrawToDC(oBmpPart.Canvas.Handle) = S_OK) then begin
BitBlt(Result.Canvas.Handle, nX, nY, nLastX-nX, nLastY-nY, oBmpPart.Canvas.Handle, 2, 2,SRCCOPY);
end;
bDoneY := (nY = 0);
nLastY := nY;
Dec(nY, nClientHeight-4);
end;
bDoneX := (nX = 0);
nLastX := nX;
Dec(nX, (nClientWidth-4));
end;
finally
FreeAndNil(oBmpPart);
end;
finally
pRender := nil;
end;
end;
LockWindowUpdate(0);
end;
答案 1 :(得分:1)
您可以使用sourceBitmap.Canvas.CopyRect
答案 2 :(得分:0)
您是否尝试将sourceDrawRect
设置为顶部和左侧为负的矩形,并且右侧和底部超过您允许视图对象绘制的位图的宽度和高度,以便您想要的区域落在此上位图?