Delphi-PRAXiS

Delphi-PRAXiS (https://www.delphipraxis.net/forum.php)
-   Object-Pascal / Delphi-Language (https://www.delphipraxis.net/32-object-pascal-delphi-language/)
-   -   Delphi screen capture (https://www.delphipraxis.net/104283-screen-capture.html)

mohfa 30. Nov 2007 18:20


screen capture
 
Hi every one , i want to make a screen capture application :
The captured Image will be converted into a Flash with all objects i mean with menus , mouse ... it will be like a demo builder which presents its captured images into Thumbnail and with the animation time line ... etc .
My question is : what should i have as Components and other stuffs

many thanks

LoCrux 1. Dez 2007 03:14

Re: screen capture
 
@mohfa

Zitat:

Zitat von mohfa
What should i have as Components and other stuffs.

I dont't know what exactly you need. But look here.

For a screenshot I can provide you this:

Delphi-Quellcode:
procedure GetScreenShot (var ABitmap : TBitmap);
var
  DC : THandle;
begin
  if Assigned(ABitmap) then                   // Check Bitmap<>NIL
  begin
    DC := GetDC();                            // Get Desktop DC
    try
      ABitmap.Width := Screen.Width;          // Adjust Bitmapsize..  
      ABitmap.Height := Screen.Height;        // ..to screen size
      BitBlt(ABitmap.Canvas.Handle,           // Copy
             0,0,Screen.Width,Screen.Height,  // Desktop
             DC,                              // into  
             0,0,                             // the
             SrcCopy                          // Bitmap
        );
    finally
      ReleaseDC(0, DC);                       // Relase DC
    end;
  end;
end;
//EDIT: R-Fehler entfernt

mohfa 1. Dez 2007 10:37

Re: screen capture
 
thank you LoCrux . what i want to do is like The Demo Builder .
my Questions are :
How to display the Flash Animation TimeLine.
how to convert the captured image into Flash Frames. with all the animation ( Mouse , Menu ... ).
See this Sample
This how does it work :
TYhe user capture the Wanted Sreens then the Demo Builder converts these Screens into a SWF frames ( all this process is done into Memory ).


Many thanks again for you all


Alle Zeitangaben in WEZ +1. Es ist jetzt 22:58 Uhr.

Powered by vBulletin® Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
LinkBacks Enabled by vBSEO © 2011, Crawlability, Inc.
Delphi-PRAXiS (c) 2002 - 2023 by Daniel R. Wolf, 2024-2025 by Thomas Breitkreuz