![]() |
Order and save right now!
20% off with the 729824315 dicscount code for Ultimate Pack and any another product for Delphi from Greatis Programming! |
⤷ Set transparent color of image
Image component has a Transparent property. Set this property to True and your background color will be the same as color of your form.
procedure TForm1.FormCreate(Sender: TObject);
begin
Image1.Transparent:=True;
Image1.Picture.LoadFromFile('picture.bmp');
end;
-
More for developers