SaveToFile (Delphi)
Description
This example converts a specified icon to a bitmap. To run this example, add an image, a button, and an Open dialog to a form. Name the button ConvertIcon2Bitmap, and add the following code as its OnClick event handler.
Code
procedure TForm1.ConvertIcon2BitmapClick(Sender: TObject);
var
s : string;
Icon: TIcon;
begin
OpenDialog1.DefaultExt := '.ICO';
OpenDialog1.Filter := 'icons (*.ico)|*.ICO';
OpenDialog1.Options := [ofOverwritePrompt, ofFileMustExist, ofHideReadOnly ];
if OpenDialog1.Execute then
begin
Icon := TIcon.Create;
try
Icon.Loadfromfile(OpenDialog1.FileName);
s:= ChangeFileExt(OpenDialog1.FileName,'.BMP');
Image1.Width := Icon.Width;
Image1.Height := Icon.Height;
Image1.Canvas.Draw(0,0,Icon);
Image1.Picture.SaveToFile(s);
ShowMessage(OpenDialog1.FileName + ' Saved to ' + s);
finally
Icon.Free;
end;
end;
end;
Uses
- Vcl.Graphics.TPicture.SaveToFile ( fr | de | ja )
- Vcl.Graphics.TIcon.Create ( fr | de | ja )
- Vcl.Graphics.TGraphic.Height ( fr | de | ja )
- Vcl.Graphics.TGraphic.Width ( fr | de | ja )
- Vcl.ExtCtrls.TImage.Canvas ( fr | de | ja )
- System.SysUtils.ChangeFileExt ( fr | de | ja )
- System.AnsiStrings.ChangeFileExt ( fr | de | ja )