ico

Add icon to existing EXE file from the command line

Is there a command line tool that can add an icon to an existing executable file? It should be able to set the icon as the file's "main" icon that is shown in Explorer. I don't have Visual Studio and cannot recompile the exe with custom resources containing the icon. UPDATE: The best tool I have found since posting this question is by ...

Windows CE Icon lost when using CAB installer

I have a C# Windows CE 5.0 application. I am using VS2005. My executable shows the correct icon (32x32 8 bit). If I move the .exe file to the CE device using ActiveSync then the icon is still correctly displayed. When I use a CAB file to install the application the icon is lost. Currently the icon is an embedded resource. Any suggestions...

how to determine the transparent color index of ICO image with PIL ?

Specifically, this is from an .ico file, so there is no "transparent" "info" attribute like you would get in a gif. The below example illustrates converting Yahoo!'s favicon to a png using the correct transparency index of "0", which I guessed. how to detect that the ico is in fact transparent and that the transparency index is 0 ? i...

Question About Icons and GUI For Notepad++ Lovers

In the notepad++ website there's a technique to change the icons with any other "ico" format image. Each icon has it special name in order to be detected by notepad++. For instance, the new file icon is: new_normal.ico. The open file icon is: fileopen_normal.ico and so on. But I can't find the special names for Synchronize Vertical Scrol...

favicon.png vs favicon.ico - why should I use PNG's instead of ICO's?

Other than the fact that PNG is a more common image format, is there any technical reason to favor favicon.png vs. favicon.ico? I'm supporting modern browsers which all support PNG favorite icons. ...

How do i display favicon.ico on blackberry devices?

I want to display the favicon.ico from websites on my blackberry application. I would normally use the EncodedImage class to convert the byte[] into a recognizable image file. However EncodedImage only supports PNG, BMP, JPG, TIFF, and GIF. Is there another method for me to display the ICO file on the device? ...

Why isn't my favicon appearing in IE7/8?

Page of interest: https://www.gsb-yourbank.com/test/ ICO file: https://www.gsb-yourbank.com/test/favicon.ico My favicon is a 16x16 resolution, 16-color ICO file. It will not appear in IE 7/8 no matter what I do! I've tried everything I can think of, including: generating the ICO with a variety of different utilities, changing the s...

HowTo set Icon to Qt Application, created with Qt Visual Studio Add-in?

Hello. Here is what I have: Visual Studio 2008 (on 32-bit Windows XP) Qt libraries 4.6.2 for Windows (VS 2008, 194 MB) Visual Studio Add-in (44 MB) After I installed all the software, I created simple Qt Application project, with Visual Studio: menu File | New | Project... and Qt4 Projects | Qt Application. Build it, and here is th...

Adding ICO file to Win32 program

So added a resource.rc and a resource.h file to my project. resource.rc has #include "resource.h" IDI_MYICON ICON "my_icon.ico" and resource.h has #define IDI_MYICON 201 wincl.hIcon = LoadIcon (GetModuleHandle(NULL), MAKEINTRESOURCE(IDI_MYICON)); wincl.hIconSm = (HICON) LoadImage(GetModuleHandle(NULL), MAKEINTRESOURCE(IDI_MYICON), ...

How to detect if *.ico file is a valid icon in PHP

I would like to test if *.ico images are valid icons in PHP. I tried to use getimagesize function but it doesn't support ICO files. ...

Making a .ico file using gd and php

Does anyone know how to make a .ico file that will work in Intenet explorer? I can't seem to get anywhere here is my gd code $im = imagecreatefromjpeg(FAVICONDIR.'normal/'.$filename ); list($width, $height) = getimagesize(FAVICONDIR.'normal/'.$filename); // get the width and height of the jpg $image_p = imagecreatetrueco...

How can I tell my Winforms application to use the same icon for all forms?

I have a nice icon and I want to use it on all of the forms in my application. How can I do this? ...