Board index » delphi » Canvas-drawing to Graphics-file
Dr. Norbert Hartka
![]() Delphi Developer |
Fri, 27 Aug 1999 03:00:00 GMT
|
Dr. Norbert Hartka
![]() Delphi Developer |
Fri, 27 Aug 1999 03:00:00 GMT
Canvas-drawing to Graphics-fileHi: Can anyone help me with the following? I want to save whatever is painted on a TCanvas to a graphics-file Does anyone have a clue (Replies both to the news.group and to private Regards, N. Hartkamp |
Eckhard Gart
![]() Delphi Developer |
Sat, 28 Aug 1999 03:00:00 GMT
Re:Canvas-drawing to Graphics-fileQuoteDr. Norbert Hartkamp wrote: method. Otherwise, copy the image from the canvas to a TBitmap, and then use SaveToFile. Cheers. --------------------------------- |
Dr. Norbert Hartka
![]() Delphi Developer |
Sat, 28 Aug 1999 03:00:00 GMT
Re:Canvas-drawing to Graphics-fileOn Tue, 11 Mar 1997 15:21:42 +0200, Eckhard Gartz Quote<gart...@telkom.co.za> wrote: Thanks, N. Hartkamp |
Dr. Norbert Hartka
![]() Delphi Developer |
Sat, 28 Aug 1999 03:00:00 GMT
Re:Canvas-drawing to Graphics-fileOn Tue, 11 Mar 1997 15:21:42 +0200, Eckhard Gartz Quote<gart...@telkom.co.za> wrote: Thanks, N. Hartkamp |
Bryan Valenci
![]() Delphi Developer |
Sat, 28 Aug 1999 03:00:00 GMT
Re:Canvas-drawing to Graphics-fileQuoteDr. Norbert Hartkamp wrote: const WPFile = 'c:\Windows\BryanV.BMP'; var i:tinifile; bits:tBitmap; l:Boolean; { s:string; p:pointer;} begin bits:=tBitmap.create; with ActiveMDIChild as tTargaView do begin Bits.Height:=Canvas.cliprect.Bottom; Bits.Width:=Canvas.Cliprect.Right; Bits.Canvas.CopyMode := cmSrcCopy; Bits.SaveToFile(wpfile); l:=SystemParametersInfo(SPI_SETDESKWALLPAPER, 0, NIL, end; -- |
Guenter Guttrof
![]() Delphi Developer |
Sat, 28 Aug 1999 03:00:00 GMT
Re:Canvas-drawing to Graphics-filetry sth like that: //*************************** good luck, guenter -------------------------- QuoteOn Tue, 11 Mar 1997, Eckhard Gartz wrote: |
Guenter Guttrof
![]() Delphi Developer |
Sat, 28 Aug 1999 03:00:00 GMT
Re:Canvas-drawing to Graphics-filedoes anybody know where to get FFT and other math-routines for thanx a lot, guenter |
Mark Vaugh
![]() Delphi Developer |
Mon, 30 Aug 1999 03:00:00 GMT
Re:Canvas-drawing to Graphics-fileIn article Try this... Some Sources of Numerical Analysis Code in Pascal => ftp://cloudlab.larc.nasa.gov/pnumsrc.htm there are several links to libraries containing FFT code. Mark Vaughan |
Gus Estrell
![]() Delphi Developer |
Mon, 30 Aug 1999 03:00:00 GMT
Re:Canvas-drawing to Graphics-fileGuenter, Is anyone aware of such as beast that would allow me to do it in memory Thanks, Gus QuoteGuenter Guttroff wrote: Quote> //************************** +--------------------------------------------------------------------+ | Gus Estrella International Bull Telecommunications | | Manager, Network Management Systems Groupe Bull | | G.Estre...@bull.com http://www.digitaldaze.com/estrella/ | | | | "Don't assume intent or malice until stupidity has been ruled out" | +--------------------------------------------------------------------+ |
Mark Vaugh
![]() Delphi Developer |
Wed, 01 Sep 1999 03:00:00 GMT
Re:Canvas-drawing to Graphics-fileIn article <5g7or4$...@reznor.larc.nasa.gov>, and if it's just FFT stuff you want, then search recent posts to Mark Vaughan |
David Ullric
![]() Delphi Developer |
Thu, 02 Sep 1999 03:00:00 GMT
Re:Canvas-drawing to Graphics-fileQuoteMark Vaughan wrote: should be certain to find the one that says something about "... correct version" in the title - my first couple of posts on the topic were wrong, wrong, wrong. If you find a post containg an embarassed explanation -- ?his ?s ?avid ?llrich's ?ig ?ile |
The Graphical Gno
![]() Delphi Developer |
Fri, 03 Sep 1999 03:00:00 GMT
Re:Canvas-drawing to Graphics-fileQuoteIn article <332C4C46.2...@math.okstate.edu>, David Ullrich <ullr...@math.okstate.edu> wrote: Check the MATH section The Graphical Gome (r...@ktibv.nl) Senior Software Engineer --------------------------------------------------------------------------- |
David Ullric
![]() Delphi Developer |
Fri, 03 Sep 1999 03:00:00 GMT
Re:Canvas-drawing to Graphics-fileQuoteThe Graphical Gnome wrote: (Actually the "final" version that got posted here gives a little better performance than the previous versions, in addition to fixing the wrong wrong wrong part. Never did get it up to the speed of the Numerical Recipes version but it's close, and I personally like the recursive one better, it's easier for me to see what's going on.) -- ?his ?s ?avid ?llrich's ?ig ?ile |
arn..
![]() Delphi Developer |
Tue, 07 Sep 1999 03:00:00 GMT
Re:Canvas-drawing to Graphics-fileIn Quote>, <g...@Cip.Physik.Uni-Wuerzburg.DE> writes: et.re.kr!usenet.kornet.nm.kr!howland.erols.net!cam-news-hub1.bbnplanet.com! bbnplanet.com!news.maxwell.syr.edu!news.apfel.de!fu-berlin.de!uniol!uni-erl en.de!winx03!wpax22.physik.uni-wuerzburg.de!ggut Quote> From: Guenter Guttroff <g...@Cip.Physik.Uni-Wuerzburg.DE> Quote> Subject: FFT-routines??? Quote> References: <332444d0.80...@eunetnews.germany.eu.net> <Pine.HPP.3.92.970311193748.28166D-100...@wpax22.physik.uni-wuerzburg.de> Quote> NNTP-Posting-Host: wpax22.physik.uni-wuerzburg.de Quote> Xref: news.NetVision.net.il comp.lang.pascal.delphi.misc:51530 Quote
arnon |
Michael Bec
![]() Delphi Developer |
Thu, 09 Sep 1999 03:00:00 GMT
Re:Canvas-drawing to Graphics-fileQuotearn...@netvision.net.il wrote: am finishing a FFT component and wanted to test it. Thanks, Michael |