Questions tagged [ico]

ICO is an image file format (associated with ".ico" file extension) developed by Microsoft and designed for storing icons. It is widely used in Microsoft products, notably in Windows operating systems. From there it spread to other platforms and Internet. Use this tag if your question is related to this specific format. Do not use this tag for general questions about icons or concepts such as "favicon" if you don't plan to use ICO format for them.

Single ICO file can contain many images of different pixel sizes and color depths. The idea behind this is that software can pick most appropriate format without performing internal scaling, which from historical point of view had impact on performance and from the other point of view may give poor results when it comes to appearance. Scaling icon from high to small resolution, like 16x16 pixels, may require artist intervention or specialized software to keep icon sharp and readable.

225 questions
0
votes
1 answer

How to change icon ( of main Form + another child forms) programatically in c# code while compilation

I am struggling with how to change the main program icon during compilation. I know it can be changed in Visual Studio Project-> Properties -> Application -> and there is button Change icon. Okay, how can I do exactly the same now without manually…
adam
  • 179
  • 2
  • 12
0
votes
2 answers

Set transparent icon with RibbonX API in Excel not working

I am trying to set a transparent icon for my Excel add-in with the RibbonX API. This is my XML:
Serhii
  • 355
  • 2
  • 11
0
votes
0 answers

Why does this SVG to ICO conversion with ImageMagick batch script I wrote produce broken images?

Okay I've been doing a bunch of searching on this topic and I can't seem to find a good answer on this website, so please read this entire thing before marking it as a duplicate or whatever. I'm writing some personal zsh utilities to make it easy…
Aslan French
  • 520
  • 2
  • 6
  • 23
0
votes
0 answers

C# Compiler Embedded Resources Access

i need to make a Executable which then makes it's own Executable. The problem is, i am using embedded resources .. they need to be inside of the compiled exe also. So the question is whats wrong here ? : I am using the following compiler options…
user11186252
0
votes
1 answer

Token real synchronization from my website

I like to integrate a real token synchronization (From distributer wallet account to user's wallet address the token need to transfer) in my website. My website needs to interact with the blockchain real token need to be transferred to the user's…
0
votes
2 answers

HTML PNG as ICO without conversion

I want to use a png as an ico in html, how could I go by doing this? I can you can use a png by some code such as: What is the correct way to use a png as an iso with out converting it to an actual ico?
Dennis
  • 3
  • 1
0
votes
2 answers

How to make .ico format icon in task bar appear transparent?

I would like the background of the task bar icon that appears when my windows form application opens to be transparent. However, the icon has a white background when it appears in the task bar. I opened the .ico file and it has the checkered…
tallen638
  • 3
  • 3
0
votes
1 answer

How To Compare two .ico (icon) files in python?

Although i am new to python i just want to compare two .ico extension files. Anyone with the expertise can tell how can i do that? Is there any package or library readily available in python to do so ? Thanks for reading the question. Your…
Marshmellow
  • 111
  • 1
  • 11
0
votes
1 answer

how to add different head two tags or different head information for my two directive

I have main.cshtml file It has a head tag which includes css and js references. I have two directives / templates. I want to have different two title. When page1 opened (has template1) I want page's title to be Page-1. When page2 opened (has…
0
votes
1 answer

Multiple Wordpress Websites Keeps Getting Hacked on a Same Hosting

Here is the problem. I'm hosting about 20 Wordpress websites in 1 hosting. While I'm cleaning one website from viruses (.ico file injecting code into index.php) the other already cleaned websites are being injected again (in the matter of hours or…
Adam S.
  • 27
  • 7
0
votes
2 answers

Menu and submenus using binding with Icon

I using this solution in order to bind my Menu just like at this example and I wonder how can I add icon to my MenuItem. In my Model I also have property called IsSelected so I try this approach:
falukky
  • 1,099
  • 2
  • 14
  • 34
0
votes
1 answer

Using an Icon across user downloads

So I'm in the final stages of a project I've been working on. I went ahead and created an ICO file for my shortcut but now I'm not sure how to preserve the ICO file as the background. When I compress the file and send it to someone else, they open…
Carl
  • 457
  • 5
  • 23
0
votes
1 answer

Creating a file type with new icon

I have a text based file i have given an extension named .val i have also changed its icon by selecting Computer>Open tools>Open folder options> however though this changes the icon for the extension it only changes it on my computer, I would like…
Mac
  • 507
  • 2
  • 5
  • 7
0
votes
2 answers

How to display sharp icons in wxWIdgets

I am displaying icon for my app using wxWidgets. I am using following code and using a .ico file with 128*128 dimensions. but the icon displayed is not sharp. How should I make it sharp? I am using following code: bool ImageFileToIcon(wxString…
aromahola
  • 190
  • 1
  • 12
0
votes
2 answers

How to use preg_match with file extension in PHP 5.6

I'm looking for a file which name is like this string: .047b2edb.ico I am not sure how to add "ico" extension to my preg_match function. [.a-zA-Z0-9] Any suggestions would be appreciated This is my whole code. With this code I can't find a file…
Adam Kowalski
  • 103
  • 13