如何在delphi中编写并提取exe文件里面的ICO图标
发布网友
发布时间:2022-05-14 05:47
我来回答
共2个回答
热心网友
时间:2023-10-05 07:36
提取 exe 文件里面的 ICO 图标,通常可以 WinAPI 函数 ExtractIcon,以下是示例代码:
procere TForm1.RzBitBtn1Click(Sender: TObject);
var iCount: Integer;
begin
if OpenDialog1.Execute then
begin
Edit1.Text := OpenDialog1.FileName;
iCount := ExtractIcon(HInstance, PChar(OpenDialog1.FileName), $FFFFFFFF);
if iCount>0 then
begin
Label2.Caption := Format('当前 EXE 文件*包含 %d 个 ICON 资源。',[iCount]);
Image1.Picture.Icon.Handle := ExtractIcon(HInstance,PChar(OpenDialog1.FileName),0);
end else
begin
Label2.Caption := '当前 EXE 文件中不包含 ICON 资源。';
end;
end;
end;
运行效果截图:
热心网友
时间:2023-10-05 07:36
会写自己的EXE程序,但没一个好看的EXE图标,是不是很遗憾啊?很多软件都有很好看的图标,我们为什么不提取出来呢?下面教你怎么用delphi编程提取EXE文件的图标,并保存为ICO格式的.
代码如下:
procereTForm1.getIcon;
var
Count:Integer;
FileName:String;
i:integer;
begin
if(FileName<>Edit1.Text)then
begin
FileName:=Edit1.Text;
I:=0;
Count:=ExtractIcon(Application.Handle,PChar(FileName),
$FFFFFFFF);
end
else
Inc(I);
if(I<count)then
Image1.Picture.Icon.Handle:=
ExtractIcon(Application.Handle,PChar(FileName),I)
else
ShowMessage(’没有找到!’);
end;
procereTForm1.Button1Click(Sender:TObject);
begin
getIcon;
end;
procereTForm1.Button2Click(Sender:TObject);
begin
opendialog1.Execute;
edit1.Text:=opendialog1.FileName;
end;
procereTForm1.Button3Click(Sender:TObject);
begin
savedialog1.Execute;
image1.Picture.SaveToFile(savedialog1.FileName);
end;