Üdv. mindenkinek!
Mellékeltem képet is a problémáról, de leírom röviden. A lazarus 'GetFormImage' lementi a képet, viszont a 'Label' komponensek lemaradnak a képről. Nem találtam megoldást sehol.
Köszönöm a segítséget előre is.
A rá vonatkozó kód:
var
bmp : TBitmap;
pic : TPicture;
begin
pic := TPicture.Create;
bmp := TBitmap.Create;
try
bmp.PixelFormat:=pf16bit;
bmp := Form1.GetFormImage;
pic.Assign(bmp);
image1.Picture.Assign(pic);
pic.bitmap.Canvas.Draw(1,0,bmp);
pic.SaveToFile('01.bmp');
finally
bmp.Free;
pic.Free;
end;
end;