Re: [MSEide-MSEgui-talk] Save form as bitmap?

2023-03-20 Thread Fred van Stappen
Re-hello Sieghard. Ooops, once again I have to resent the mail with correction: The only easy way I found was using BGRABitmap: procedure TfrmMain.CopyScreenForm; var FMyCapture: TBgraBitmap; Clip: TRect; begin try FMyCapture := TBgraBitmap.Create; Clip

Re: [MSEide-MSEgui-talk] Save form as bitmap?

2023-03-20 Thread Fred van Stappen
Hello Sieghard. The only easy way I found was using BGRABitmap: var FMyCapture: TBgraBitmap; procedure TfrmMain.CopyScreenForm; var Clip: TRect; begin try Clip := Bounds(Left, Top, Width, Height); Clipboard.Assign(FMyCapture.Bitmap); except

Re: [MSEide-MSEgui-talk] Save form as bitmap?

2023-03-20 Thread Sieghard via mseide-msegui-talk
Hello Fred, vous ecrit au Mon, 13 Mar 2023 17:18:53 +: > LCL allows reading form's rendered bitmap by accessing > TForm.GetFormImage. For example you can save the bitmap in a ... > thing in msegui? Is it possible to somehow SaveToStream or SaveToFile the > bitmap rendered by a msegui form? >