59

自家製アプリに使用するツリーアイコンを取得したいのですが。画像を.iconファイルとして抽出する方法を知っている人はいますか?16x16と32x32の両方が必要です。または、スクリーンキャプチャを実行します。

4

12 に答える 12

73

誰かが簡単な方法を探している場合は、7zip を使用して shell32.dll を解凍し、フォルダー .src/ICON/ を探してください。

于 2016-06-14T01:41:03.913 に答える
58

Visual Studioで、[ファイルを開く...]、[ファイル...]の順に選択します。次に、Shell32.dllを選択します。フォルダツリーを開くと、「アイコン」フォルダにアイコンが表示されます。

アイコンを保存するには、フォルダツリーのアイコンを右クリックして[エクスポート]を選択します。

于 2008-08-12T03:32:20.590 に答える
21

もう1つのオプションは、ResourceHackerなどのツールを使用することです。アイコンだけではありません。乾杯!

于 2008-08-12T04:17:42.120 に答える
13

shell32.dll からアイコン #238 を抽出する必要があり、Visual Studio や Resourcehacker をダウンロードしたくなかったので、Technet からいくつかの PowerShell スクリプトを見つけました (John Grenfell と # https://social.technet.microsoft. com/Forums/windowsserver/en-US/16444c7a-ad61-44a7-8c6f-b8d619381a27/using-icons-in-powershell-scripts?forum=winserverpowershell ) 同様のことを行い、私のニーズに合わせて新しいスクリプト (以下) を作成しました.

入力したパラメータは次のとおりです (ソース DLL パス、ターゲット アイコン ファイル名、および DLL ファイル内のアイコン インデックス):

C:\Windows\System32\shell32.dll

C:\Temp\Restart.ico

238

新しいショートカットを一時的に作成する試行錯誤の結果、必要なアイコン インデックスが #238 であることを発見しました (デスクトップを右クリックし、[新規] --> [ショートカット] を選択して calc と入力し、Enter キーを 2 回押します)。次に、新しいショートカットを右クリックして [プロパティ] を選択し、[ショートカット] タブの [アイコンの変更] ボタンをクリックします。パス C:\Windows\System32\shell32.dll に貼り付けて、[OK] をクリックします。使用するアイコンを見つけて、そのインデックスを作成します。注: インデックス #2 は #1 の下にあり、右にはありません。私の Windows 7 x64 マシンでは、アイコン インデックス #5 が 2 列目の一番上にありました。

同様に機能し、より高品質のアイコンを取得するより良い方法を誰かが持っている場合は、それについて聞いてみたいと思います. ありがとう、ショーン。

#Windows PowerShell Code###########################################################################
# http://gallery.technet.microsoft.com/scriptcenter/Icon-Exporter-e372fe70
#
# AUTHOR: John Grenfell
#
###########################################################################

<#
.SYNOPSIS
   Exports an ico and bmp file from a given source to a given destination
.Description
   You need to set the Source and Destination locations. First version of a script, I found other examples but all I wanted to do as grab and ico file from an exe but found getting a bmp useful. Others might find useful
   No error checking I'm afraid so make sure your source and destination locations exist!
.EXAMPLE
    .\Icon_Exporter.ps1
.Notes
        Version HISTORY:
        1.1 2012.03.8
#>
Param ( [parameter(Mandatory = $true)][string] $SourceEXEFilePath,
        [parameter(Mandatory = $true)][string] $TargetIconFilePath
)
CLS
#"shell32.dll" 238
If ($SourceEXEFilePath.ToLower().Contains(".dll")) {
    $IconIndexNo = Read-Host "Enter the icon index: "
    $Icon = [System.IconExtractor]::Extract($SourceEXEFilePath, $IconIndexNo, $true)    
} Else {
    [void][Reflection.Assembly]::LoadWithPartialName("System.Drawing")
    [void] [System.Reflection.Assembly]::LoadWithPartialName("System.Windows.Forms")
    $image = [System.Drawing.Icon]::ExtractAssociatedIcon("$($SourceEXEFilePath)").ToBitmap()
    $bitmap = new-object System.Drawing.Bitmap $image
    $bitmap.SetResolution(72,72)
    $icon = [System.Drawing.Icon]::FromHandle($bitmap.GetHicon())
}
$stream = [System.IO.File]::OpenWrite("$($TargetIconFilePath)")
$icon.save($stream)
$stream.close()
Write-Host "Icon file can be found at $TargetIconFilePath"
于 2015-01-22T14:22:48.120 に答える
2

上記のソリューションの更新版を次に示します。リンクに埋もれていた不足しているアセンブリを追加しました。初心者はそれを理解できないでしょう。これは変更なしで実行されるサンプルです。

    <#
.SYNOPSIS
    Exports an ico and bmp file from a given source to a given destination
.Description
    You need to set the Source and Destination locations. First version of a script, I found other examples 
    but all I wanted to do as grab and ico file from an exe but found getting a bmp useful. Others might find useful
.EXAMPLE
    This will run but will nag you for input
    .\Icon_Exporter.ps1
.EXAMPLE
    this will default to shell32.dll automatically for -SourceEXEFilePath
    .\Icon_Exporter.ps1 -TargetIconFilePath 'C:\temp\Myicon.ico' -IconIndexNo 238
.EXAMPLE
    This will give you a green tree icon (press F5 for windows to refresh Windows explorer)
    .\Icon_Exporter.ps1 -SourceEXEFilePath 'C:/Windows/system32/shell32.dll' -TargetIconFilePath 'C:\temp\Myicon.ico' -IconIndexNo 41

.Notes
    Based on http://stackoverflow.com/questions/8435/how-do-you-get-the-icons-out-of-shell32-dll Version 1.1 2012.03.8
    New version: Version 1.2 2015.11.20 (Added missing custom assembly and some error checking for novices)
#>
Param ( 
    [parameter(Mandatory = $true)]
    [string] $SourceEXEFilePath = 'C:/Windows/system32/shell32.dll',
    [parameter(Mandatory = $true)]
    [string] $TargetIconFilePath,
    [parameter(Mandatory = $False)]
    [Int32]$IconIndexNo = 0
)

#https://social.technet.microsoft.com/Forums/windowsserver/en-US/16444c7a-ad61-44a7-8c6f-b8d619381a27/using-icons-in-powershell-scripts?forum=winserverpowershell
$code = @"
using System;
using System.Drawing;
using System.Runtime.InteropServices;

namespace System
{
    public class IconExtractor
    {

     public static Icon Extract(string file, int number, bool largeIcon)
     {
      IntPtr large;
      IntPtr small;
      ExtractIconEx(file, number, out large, out small, 1);
      try
      {
       return Icon.FromHandle(largeIcon ? large : small);
      }
      catch
      {
       return null;
      }

     }
     [DllImport("Shell32.dll", EntryPoint = "ExtractIconExW", CharSet = CharSet.Unicode, ExactSpelling = true, CallingConvention = CallingConvention.StdCall)]
     private static extern int ExtractIconEx(string sFile, int iIndex, out IntPtr piLargeVersion, out IntPtr piSmallVersion, int amountIcons);

    }
}
"@

If  (-not (Test-path -Path $SourceEXEFilePath -ErrorAction SilentlyContinue ) ) {
    Throw "Source file [$SourceEXEFilePath] does not exist!"
}

[String]$TargetIconFilefolder = [System.IO.Path]::GetDirectoryName($TargetIconFilePath) 
If  (-not (Test-path -Path $TargetIconFilefolder -ErrorAction SilentlyContinue ) ) {
    Throw "Target folder [$TargetIconFilefolder] does not exist!"
}

Try {
    If ($SourceEXEFilePath.ToLower().Contains(".dll")) {
        Add-Type -TypeDefinition $code -ReferencedAssemblies System.Drawing
        $form = New-Object System.Windows.Forms.Form
        $Icon = [System.IconExtractor]::Extract($SourceEXEFilePath, $IconIndexNo, $true)    
    } Else {
        [void][Reflection.Assembly]::LoadWithPartialName("System.Drawing")
        [void] [System.Reflection.Assembly]::LoadWithPartialName("System.Windows.Forms")
        $image = [System.Drawing.Icon]::ExtractAssociatedIcon("$($SourceEXEFilePath)").ToBitmap()
        $bitmap = new-object System.Drawing.Bitmap $image
        $bitmap.SetResolution(72,72)
        $icon = [System.Drawing.Icon]::FromHandle($bitmap.GetHicon())
    }
} Catch {
    Throw "Error extracting ICO file"
}

Try {
    $stream = [System.IO.File]::OpenWrite("$($TargetIconFilePath)")
    $icon.save($stream)
    $stream.close()
} Catch {
    Throw "Error saving ICO file [$TargetIconFilePath]"
}
Write-Host "Icon file can be found at [$TargetIconFilePath]"
于 2015-11-20T19:56:16.760 に答える
2

フリーウェアのResource Hackerをダウンロードして、以下の手順に従ってください。

  1. アイコンを検索する任意の dll ファイルを開きます。
  2. フォルダーを参照して、特定のアイコンを見つけます。
  3. メニュー バーから [アクション] を選択し、[保存] を選択します。
  4. .ico ファイルの宛先を選択します。

参考:http ://techsultan.com/how-to-extract-icons-from-windows-7/

于 2014-11-12T13:12:38.847 に答える
2

この質問には既に回答がありますが、これを行う方法を初めて知りたい人のために、7Zip を使用して に移動し%SystemRoot%\system32\SHELL32.dll\.rsrc\ICON、すべてのファイルを目的の場所にコピーしました。

事前に解凍されたディレクトリが必要な場合は、ここから ZIP をダウンロードできます。

注: Windows 8.1 のインストールでファイルを抽出したため、他のバージョンの Windows のファイルとは異なる場合があります。

于 2021-05-08T09:25:15.310 に答える
1

Linux を使用している場合は、gExtractWinIconsを使用して Windows DLL からアイコンを抽出できます。gextractwiniconsパッケージ内の Ubuntu と Debian で利用できます。

このブログ記事には、スクリーンショットと簡単な説明があります。

于 2014-07-23T08:43:49.740 に答える