Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
procedure TForm1.Button1Click(Sender: TObject);
var
W: TWICImage;
B: TBitmap;
begin
W:= TWicImage.Create;
try
W.LoadFromFile('C:\Original PNG File.png');
B:= TBitmap.Create;
try
B.Assign(W);
B.SaveToFile('C:\New BMP File.bmp');
finally
B.Free;
end;
finally
W.Free;
end;
end;