hi, im trying to get icon width and height is this possible?
or is there an alternative with dll call?
#include <WinAPI.au3>
#include <GDIPlus.au3>
Local $aCursor = _WinAPI_GetCursorInfo()
Local $hIcon = _WinAPI_CopyIcon($aCursor[2])
Local $aIcon = _WinAPI_GetIconInfo($hIcon)
$hImage= _GDIPlus_BitmapCreateFromHBITMAP($aIcon)
$cWidth = _GDIPlus_ImageGetWidth($hImage)
$cHeight = _GDIPlus_ImageGetHeight($hImage)
ConsoleWrite("$cWidth="&$cWidth&@LF)
ConsoleWrite("$cHeight="&$cHeight&@LF)
_GDIPlus_ImageDispose($hImage)
thanks