Questions tagged [.ico]

The ICO file format is an image file format for computer icons in Microsoft Windows.

ICO files contain one or more small images at multiple sizes and color depths, such that they may be scaled appropriately. In Windows, all executables that display an icon to the user, on the desktop, in the Start Menu, or in Windows Explorer, must carry the icon in ICO format.

30 questions
7
votes
2 answers

ICO maximum size

Is there a way to convert an image to ICO format, if the resolution is bigger than 256x256? I found several programs but none of them was able to convert larger images. The size which I need is 1024x1024.
D.Steinel
  • 333
  • 5
  • 17
6
votes
1 answer

How to display a .ico image file in a XAML app?

Is it possible to display a .ico file in a XAML C# app? It's for a WinRT Windows Phone 8.1 app using Visual Studio 2015. shows the icon fine in the designer, but not when run in the…
theMaxx
  • 3,756
  • 2
  • 27
  • 33
5
votes
3 answers

.iconbitmap gives TclError: bitmap "*.ico" not defined

I am working with Tkinter and i keep getting an error message when trying to run the code, could someone help? from tkinter import * from tkinter.messagebox import showinfo def reply(name): showinfo(title='Reply', message='Hello %s!' %…
4
votes
2 answers

Windows 7 .ico file being replaced with cached version

I'm having a problem exactly like the one in this very short video. http://www.youtube.com/watch?v=912c6sQAsH0 I do not feel comfortable running a downloaded .exe file from a third party unknown developer as suggested by the link from the youtube…
Adam Levitt
  • 10,316
  • 26
  • 84
  • 145
4
votes
2 answers

Which file formats can I use for tkinter icons?

I know this might be obvious, but in tkinter you can set an icon, but I have found it really hard to find one. I just wanted to know if you have to use the .ico format for the file or if there is a way to use .png or .jpeg files. Currently I…
Rakkkk
  • 55
  • 1
  • 10
3
votes
4 answers

PyInstaller EXE Changes Back To Original Icon

I have created a standalone .exe file with PyInstaller using this command: pyinstaller --onefile -i "icon0.ico" test.py -w. When I open the dist folder the exe gets put into it shows the icon I used but the moment I copy or move it from that folder…
Mihkel
  • 689
  • 7
  • 34
3
votes
3 answers

Is it possible to store a .ico file in a vbscript?

I have a vbscript script that takes a .ico file and creates a desktop shortcut using it as its icon, but I want to be able to have everything the script needs stored in itself, if possible.
Crattik
  • 31
  • 1
  • 3
3
votes
1 answer

Using TclApp to wrap program, issue with bitmap in Tcl/Tk

I am using TclApp to wrap my program and all of its files in a stand-alone executable - and it's working fine for 99% of the files. However, it doesn't seem to be wrapping or recognizing my .ico file... I am writing a program in Tcl/Tk and I am…
Vee
  • 729
  • 10
  • 27
3
votes
2 answers

I need to reduce size of image? Can somebody assist me?

I have a 512x512 1.03 mb .ico picture and need to upload it to a website that only accepts pictures 1mb large(or smaller idk) Can somebody help me and tell me a way to reduce the size of the image.
user3712838
  • 41
  • 1
  • 1
  • 3
3
votes
2 answers

Will a multi-sized favicon .ico file impact web page loading speed?

We used a favicon converter to create multiple image sizes within one .ico file for our website. I am concerned because our new .ico is now 1.6 KB and I don't know if internet browsers will load all of the various image sizes or only the image sizes…
2
votes
1 answer

Select Custom AutoHotKey Tray Icon from .ico file

I have a functioning AHK script, and I want to assign a custom icon to it in the toolbar, I have a .ico file that I created that has the icon that i want to use. I can use the default (first) page in the .ico file just fine, but I need to use the…
Paul Leavitt
  • 55
  • 1
  • 12
2
votes
3 answers

What is the max possible size of an 32x32px .ico file?

I'm making a favicon.ico script, and I need to know the max amount of bits possible.
horgen
  • 2,183
  • 10
  • 30
  • 34
2
votes
2 answers

How should I use .ico files in a Winforms Application?

I'm developing a WinForms c# 3.0 application. Our designer created quite a lot of .ico files containing all the needed art. The choice of .ico was made because quite often, the same image is needed in several places in different dimensions. Now, it…
Brann
  • 31,689
  • 32
  • 113
  • 162
2
votes
3 answers

File Type Icon not updating in Visual Studio

So long story short, I followed the instructions here to have my program open when a specific file type is double clicked. http://www.dreamincode.net/forums/topic/58005-file-associations-in-visual-studio/ I included an Icon to be associated with the…
Kevin Nguyen
  • 21
  • 1
  • 4
1
vote
0 answers

Create a high quality .ico file from a PNG using powershell only

I want to use powershell to download a favicon.png from a website and then convert it into a favicon.ico file that can be used for a desktop shortcut. I already know how to grab the favicon.png from the website using Invoke-WebRequest. I found this…
iamsquash
  • 11
  • 4
1
2