获取指定图标的大小
#Include <WinAPIEx.au3>
_WinAPI_GetIconDimension ( $hIcon )
$hIcon | 要获取大小的图标的句柄 |
成功: | 返回包含图标尺寸的 $tagSIZE 结构. |
失败: | 返回 0,并设置@error标志为非 0 值. |
#Include <WinAPIEx.au3>
Opt('MustDeclareVars', 1)
Global $tSIZE, $hIcon
$hIcon = _WinAPI_ShellExtractIcon(@SystemDir & '\shell32.dll', 130, 48, 48)
$tSIZE = _WinAPI_GetIconDimension($hIcon)
_WinAPI_DestroyIcon($hIcon)
ConsoleWrite(DllStructGetData($tSIZE, 'X') & ' x ' & DllStructGetData($tSIZE, 'Y') & @CR)