Hi Silvia,
Zitat von
sk.Silvia:
i just only want to save the canvas into TBitmap
you can do that and more when you pick up GrabImage() over there:
klick
Delphi-Quellcode:
procedure TDemoForm.GrabButtonClick(Sender: TObject);
begin
with GrabImage(GetDesktopWindow) do
begin
if SaveDialog.Execute then
SaveToFile(SaveDialog.FileName);
Free;
end;
end;
Kind regards
marabu