![]() |
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 |
Re: screen capture
@mohfa
Zitat:
![]() For a screenshot I can provide you this:
Delphi-Quellcode:
//EDIT: R-Fehler entfernt
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; |
Re: screen capture
thank you LoCrux . what i want to do is like The
![]() 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 ... ). ![]() 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