smashly Posted August 11, 2008 Author Share Posted August 11, 2008 (edited) I started to write an ICL-Extractor. up to now, I can read IMAGE_DOS_HEADER, IMAGE_OS2_HEADER, and full RESOURCE_TABLE. Now i have to extract the icons ...Good to hear.Even after I got the RESOURCE_TABLE I got lost with the offsets and alignment shift when it came to the extract icons part.It was at that point when I put the icl support into the to hard basket for the time being..lolAt one stage in desperation I started looking at how hard it would be to converting 16 bit to 32 bit resource.But once again it was above my understanding. Cheers Edited August 11, 2008 by smashly Link to comment Share on other sites More sharing options...
ProgAndy Posted August 11, 2008 Share Posted August 11, 2008 I've made it: http://www.autoitscript.com/forum/index.php?showtopic=78084 *GERMAN* [note: you are not allowed to remove author / modified info from my UDFs]My UDFs:[_SetImageBinaryToCtrl] [_TaskDialog] [AutoItObject] [Animated GIF (GDI+)] [ClipPut for Image] [FreeImage] [GDI32 UDFs] [GDIPlus Progressbar] [Hotkey-Selector] [Multiline Inputbox] [MySQL without ODBC] [RichEdit UDFs] [SpeechAPI Example] [WinHTTP]UDFs included in AutoIt: FTP_Ex (as FTPEx), _WinAPI_SetLayeredWindowAttributes Link to comment Share on other sites More sharing options...
Iuli Posted September 3, 2008 Share Posted September 3, 2008 Hi again , One question, a bit offtopic. I saw that you can convert ico to png with no external file, but is is possible reversely ? I mean png to ico ? Thanks [size="2"]SFXMaker[/size] - The most complete switchless installer creator software[indent][/indent] Link to comment Share on other sites More sharing options...
WeMartiansAreFriendly Posted September 4, 2008 Share Posted September 4, 2008 That's better than some tools I've been using, way better actually. Cheers! Don't bother, It's inside your monitor!------GUISetOnEvent should behave more like HotKeySet() Link to comment Share on other sites More sharing options...
smashly Posted September 4, 2008 Author Share Posted September 4, 2008 Hi again ,One question, a bit offtopic. I saw that you can convert ico to png with no external file, but is is possible reversely ? I mean png to ico ? Thanks You can write an ico header and place the png after the header. No other conversion of the png is really needed as long as the png dimensions are no greater then 256x256. Link to comment Share on other sites More sharing options...
jennico Posted January 7, 2009 Share Posted January 7, 2009 (edited) hey smashly, why did you remove your script ? as far as i understand, _ICLFormat UDF you link to does only extract icl format. please, upload yours again (supports cpl, dll, exe, ocx, as you promised). j. Edit: ey, you're online ! Edited January 7, 2009 by jennico Spoiler I actively support Wikileaks | Freedom for Julian Assange ! | Defend freedom of speech ! | Fight censorship ! | I will not silence.Don't forget this IP: 213.251.145.96 Â Link to comment Share on other sites More sharing options...
smashly Posted January 7, 2009 Author Share Posted January 7, 2009 (edited) hey smashly, why did you remove your script ?as far as i understand, _ICLFormat UDF you link to does only extract icl format.please, upload yours again (supports cpl, dll, exe, ocx, as you promised).j.Edit: ey, you're online !What promise? .. lolI've pm'd you the function and an example using the function.CheersEdit: Forgot to mention, the example can only view icl icons and is not able to extract icons from icl files. Edited January 7, 2009 by smashly Link to comment Share on other sites More sharing options...
ptrex Posted January 7, 2009 Share Posted January 7, 2009 @ProgAndy The function you submitted had a wrong index and name function. Func DefName() Local $FN = StringFormat("%0" & StringLen($IHM) & "d", $LHT + 1); ptrex was $LHT Return $FN & "_" & StringTrimRight(StringMid($sIn, StringInStr($sIn, "\", 0, -1) + 1), 3) & "ico" EndFunc ;==>DefName Func WM_NOTIFY($hWnd, $iMsg, $iwParam, $ilParam) Local $hWndFrom, $iIDFrom, $iCode, $tNMHDR, $hWndLV, $tInfo $hWndLV = GUICtrlGetHandle($LV) $tNMHDR = DllStructCreate($tagNMHDR, $ilParam) $hWndFrom = HWnd(DllStructGetData($tNMHDR, "hWndFrom")) $iIDFrom = DllStructGetData($tNMHDR, "IDFrom") $iCode = DllStructGetData($tNMHDR, "Code") Switch $hWndFrom Case $hWndLV Switch $iCode Case $NM_DBLCLK Local $LVHT = _GUICtrlListView_HitTest($hWndLV) If $LVHT[0] <> -1 And StringRight($sIn, 4) = ".icl" Then $Extract = 1 $LHT = ($LVHT[0] + 0); ptrex was + 1 EndIf EndSwitch EndSwitch Return $GUI_RUNDEFMSG EndFunc ;==>WM_NOTIFY Corrected here. regards ptrex Contributions :Firewall Log Analyzer for XP - Creating COM objects without a need of DLL's - UPnP support in AU3Crystal Reports Viewer - PDFCreator in AutoIT - Duplicate File FinderSQLite3 Database functionality - USB Monitoring - Reading Excel using SQLRun Au3 as a Windows Service - File Monitor - Embedded Flash PlayerDynamic Functions - Control Panel Applets - Digital Signing Code - Excel Grid In AutoIT - Constants for Special Folders in WindowsRead data from Any Windows Edit Control - SOAP and Web Services in AutoIT - Barcode Printing Using PS - AU3 on LightTD WebserverMS LogParser SQL Engine in AutoIT - ImageMagick Image Processing - Converter @ Dec - Hex - Bin -Email Address Encoder - MSI Editor - SNMP - MIB ProtocolFinancial Functions UDF - Set ACL Permissions - Syntax HighLighter for AU3ADOR.RecordSet approach - Real OCR - HTTP Disk - PDF Reader Personal Worldclock - MS Indexing Engine - Printing ControlsGuiListView - Navigation (break the 4000 Limit barrier) - Registration Free COM DLL Distribution - Update - WinRM SMART Analysis - COM Object Browser - Excel PivotTable Object - VLC Media Player - Windows LogOnOff Gui -Extract Data from Outlook to Word & Excel - Analyze Event ID 4226 - DotNet Compiler Wrapper - Powershell_COM - New Link to comment Share on other sites More sharing options...
yehia Posted April 15, 2009 Share Posted April 15, 2009 can u please re post your source please? that other topic u posted is returning errors always and there is no alternatives My Scripts:IE New UDFsElastic images moving under mouse (with a happy valentine's example)_FileRemoveLine Link to comment Share on other sites More sharing options...
ProgAndy Posted April 15, 2009 Share Posted April 15, 2009 i think, this is the function. At least it does the same http://bbs.bathome.cn/thread-2973-1-1.htmlexpandcollapse popup#NoTrayIcon #AutoIt3Wrapper_Change2CUI=y Global $aEN[1] Local $help = @scriptName & " <File> <Index> <Output file>" & @crLf If $CmdLine[0] <> 3 then consoleWrite($help) exit(-1) EndIf $File = $CmdLine[1] If not fileExists($File) then $file = @systemDir & "\" & $cmdLine[1] If not fileExists($File) then consoleWriteErr($cmdLine[1] & " not found." & @crLf) exit(-2) EndIf EndIf $Index = number($cmdLine[2]) _ExtractIconToFile($File, $Index, $CmdLine[3]) If @error = 0 then exit(0) exit(-3) Func _ExtractIconToFile($sInFile, $iIcon, $sOutIco, $iPath = 0) Local Const $LOAD_LIBRARY_AS_DATAFILE = 0x00000002 Local Const $RT_ICON = 3 Local Const $RT_GROUP_ICON = 14 Local $hInst, $iGN = "", $sData, $sHdr, $aHdr, $iCnt, $Offset, $FO, $FW, $iCrt = 18 If $iPath = 1 Then $iCrt = 26 If Not FileExists($sInFile) Then Return SetError(1, 0, 0) If Not IsInt($iIcon) Then Return SetError(2, 0, 0) $hInst = _LoadLibraryEx($sInFile, $LOAD_LIBRARY_AS_DATAFILE) If Not $hInst Then Return SetError(3, 0, 0) _ResourceEnumNames($hInst, $RT_GROUP_ICON) For $i = 1 To $aEN[0] If $i = StringReplace($iIcon, "-", "") Then $iGN = $aEN[$i] ExitLoop EndIf Next Dim $aEN[1] If $iGN = "" Then _FreeLibrary($hInst) Return SetError(4, 0, 0) EndIf $sData = _GetIconResource($hInst, $iGN, $RT_GROUP_ICON) If @error Then _FreeLibrary($hInst) Return SetError(5, 0, 0) EndIf $sHdr = BinaryMid($sData, 1, 6) $aHdr = StringRegExp(StringTrimLeft(BinaryMid($sData, 7), 2), "(.{28})", 3) $iCnt = UBound($aHdr) $Offset = ($iCnt * 16) + 6 For $i = 0 To $iCnt -1 Local $sDByte = Dec(_RB(StringMid($aHdr[$i], 17, 8))) $sHdr &= StringTrimRight($aHdr[$i], 4) & _RB(Hex($Offset)) $Offset += $sDByte Next For $i = 0 To $iCnt -1 $sData = _GetIconResource($hInst, "#" & Dec(_RB(StringRight($aHdr[$i], 4))), $RT_ICON) If @error Then _FreeLibrary($hInst) Return SetError(6, 0, 0) EndIf $sHdr &= StringTrimLeft($sData, 2) Next _FreeLibrary($hInst) $FO = FileOpen($sOutIco, $iCrt) If $FO = -1 Then Return SetError(7, 0, 0) $FW = FileWrite($FO, $sHdr) If $FW = 0 Then FileClose($FO) Return SetError(8, 0, 0) EndIf FileClose($FO) Return SetError(0, 0, 1) EndFunc ;==>_ExtractIconToFile ; ======================================================================================================== ; Internal Helper Functions from this point on ; ======================================================================================================== Func _GetIconResource($hModule, $sResName, $iResType) Local $hFind, $aSize, $hLoad, $hLock, $tRes, $sRet $hFind = DllCall("kernel32.dll", "int", "FindResourceA", "int", $hModule, "str", $sResName, "long", $iResType) If @error Or Not $hFind[0] Then Return SetError(1, 0, 0) $aSize = DllCall("kernel32.dll", "dword", "SizeofResource", "int", $hModule, "int", $hFind[0]) If @error Or Not $aSize[0] Then Return SetError(2, 0, 0) $hLoad = DllCall("kernel32.dll", "int", "LoadResource", "int", $hModule, "int", $hFind[0]) If @error Or Not $hLoad[0] Then Return SetError(3, 0, 0) $hLock = DllCall("kernel32.dll", "int", "LockResource", "int", $hLoad[0]) If @error Or Not $hLock[0] Then _FreeResource($hLoad[0]) Return SetError(4, 0, 0) EndIf $tRes = DllStructCreate("byte[" & $aSize[0] & "]", $hLock[0]) If Not IsDllStruct($tRes) Then _FreeResource($hLoad[0]) Return SetError(5, 0, 0) EndIf $sRet = DllStructGetData($tRes, 1) If $sRet = "" Then _FreeResource($hLoad[0]) Return SetError(6, 0, 0) EndIf _FreeResource($hLoad[0]) Return $sRet EndFunc ; Just a Reverse string byte function (smashly style..lol) Func _RB($sByte) Local $aX = StringRegExp($sByte, "(.{2})", 3), $sX = '' For $i = UBound($aX) - 1 To 0 Step -1 $sX &= $aX[$i] Next Return $sX EndFunc ;==>_RB Func _LoadLibraryEx($sFile, $iFlag) Local $aRet = DllCall("Kernel32.dll", "hwnd", "LoadLibraryExA", "str", $sFile, "hwnd", 0, "int", $iFlag) Return $aRet[0] EndFunc ;==>_LoadLibraryEx Func _FreeLibrary($hModule) DllCall("Kernel32.dll", "hwnd", "FreeLibrary", "hwnd", $hModule) EndFunc ;==>_FreeLibrary Func _FreeResource($hglbResource) DllCall("kernel32.dll", "int", "FreeResource", "int", $hglbResource) EndFunc ;==>_FreeResource Func _ResourceEnumNames($hModule, $iType) Local $aRet, $xCB If Not $hModule Then Return SetError(1, 0, 0) $xCB = DllCallbackRegister('___EnumResNameProc', 'int', 'int_ptr;int_ptr;int_ptr;int_ptr') $aRet = DllCall('kernel32.dll', 'int', 'EnumResourceNamesW', 'ptr', $hModule, 'int', $iType, 'ptr', DllCallbackGetPtr($xCB), 'ptr', 0) DllCallbackFree($xCB) If $aRet[0] <> 1 Then Return SetError(2, 0, 0) Return SetError(0, 0, 1) EndFunc ;==>_ResourceEnumNames Func ___EnumResNameProc($hModule, $pType, $pName, $lParam) Local $aSize = DllCall('kernel32.dll', 'int', 'GlobalSize', 'ptr', $pName), $tBuf If $aSize[0] Then $tBuf = DllStructCreate('wchar[' & $aSize[0] & ']', $pName) ReDim $aEN[UBound($aEN) + 1] $aEN[0] += 1 $aEN[UBound($aEN) - 1] = DllStructGetData($tBuf, 1) Else ReDim $aEN[UBound($aEN) + 1] $aEN[0] += 1 $aEN[UBound($aEN) - 1] = "#" & $pName EndIf Return 1 EndFunc ;==>___EnumResNameProcAlso, youu could look at the Reshacker Project by trancexx. *GERMAN* [note: you are not allowed to remove author / modified info from my UDFs]My UDFs:[_SetImageBinaryToCtrl] [_TaskDialog] [AutoItObject] [Animated GIF (GDI+)] [ClipPut for Image] [FreeImage] [GDI32 UDFs] [GDIPlus Progressbar] [Hotkey-Selector] [Multiline Inputbox] [MySQL without ODBC] [RichEdit UDFs] [SpeechAPI Example] [WinHTTP]UDFs included in AutoIt: FTP_Ex (as FTPEx), _WinAPI_SetLayeredWindowAttributes Link to comment Share on other sites More sharing options...
yehia Posted April 15, 2009 Share Posted April 15, 2009 thanks that really helped ... My Scripts:IE New UDFsElastic images moving under mouse (with a happy valentine's example)_FileRemoveLine Link to comment Share on other sites More sharing options...
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now