Good morning,
Problem insert a png image with its transparency or to modify the background color.
procedure TForm1.Button1Click(Sender: TObject);
var
Picture: TPicture;
begin
Picture := TPicture.Create;
Picture.LoadFromFile('D:\Embarcadero\Dragon.png');
LMDRichEdit.InsertGraphic(Picture.Graphic);
Picture.Free;
end;
Thanks a lot
PNG
PNG
Comments