pythonpython-2.7tkinter.ico

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 have

window = Tkinter.Tk()
window.title("Weclome!")
window.geometry("200x300")
window.wm_iconbitmap("Icon.ico")
window.configure(background = "Black")

That is the whole setup I have and I just want to know about line 4:

window.wm_iconbitmap("Icon.ico") 

Thanks for responding to my question, although i am sorry for not spending more time looking into the question rather than just asking here.


Solution

  • Let's start by reading the documentation!

    The documentation at effbot.org says the following regarding iconbitmap(bitmap=None)

    Sets or gets the icon bitmap to use when this window is iconified. This method is ignored by some window managers (including Windows).

    Note that this method can only be used to display monochrome icons. To display a color icon, put it in a Label widget and display it using the iconwindow method instead.

    Same as wm_iconbitmap.

    So here's the documentation about iconwindow(window=None):

    Sets or gets the icon window to use as an icon when this window is iconified. This method is ignored by some window managers (including Windows).

    Same as wm_iconwindow.

    window

    The new icon window. If omitted, the current window is returned.
    

    According to this other documentation, which actually says the same things as the docstrings of the homonymous method for tkinter in (at least) Python 2.7, 3.5 and 3.6:

    wm_iconbitmap(self, bitmap=None, default=None)

    Set bitmap for the iconified widget to bitmap. Return the bitmap if None is given.

    Under Windows, the default parameter can be used to set the icon for the widget and any descendents that don't have an icon set explicitly. default can be the relative path to a .ico file (example: root.iconbitmap(default='myicon.ico') ). See Tk documentation for more information.

    So here's the original Tk documentation:

    wm iconbitmap window ?bitmap?

    If bitmap is specified, then it names a bitmap in the standard forms accepted by Tk (see the Tk_GetBitmap manual entry for details). This bitmap is passed to the window manager to be displayed in window's icon, and the command returns an empty string. If an empty string is specified for bitmap, then any current icon bitmap is canceled for window. If bitmap is specified then the command returns an empty string. Otherwise, it returns the name of the current icon bitmap associated with window, or an empty string if window has no icon bitmap.

    From my understanding of Tcl, here window is your toplevel window (either an instance of Tk or Toplevel).

    On the Windows operating system, an additional flag is supported:

    wm iconbitmap window ?-default? ?image?
    

    If the -default flag is given, the icon is applied to all toplevel windows (existing and future) to which no other specific icon has yet been applied.

    In addition to bitmap image types, a full path specification to any file which contains a valid Windows icon is also accepted (usually .ico or .icr files), or any file for which the shell has assigned an icon.

    Tcl will first test if the file contains an icon, then if it has an assigned icon, and finally, if that fails, test for a bitmap.

    Not very concrete and thus helpful answer so far.


    My conclusion

    The iconbitmap function (or method, depending on the programming language) should be used to set a bitmap image to the window when the window is iconified.

    On Windows you're allowed to set a full path specification to any file which contains a valid Windows icon is also accepted (usually .ico or .icr files), or any file for which the shell has assigned an icon.

    So which images are bitmaps?

    1. xbm and xpm (for X Window System)

      According to the Wikipedia article to which I linked "bitmap" to above:

      The X Window System uses a similar xbm format for black-and-white images, and xpm for color images. ...

    2. BMP file format

    3. Netpbm format

    4. .wbmp

    5. ILBM

      ...

    So most of the bitmap file formats are not cross-platform! In other words, if someone tells you to use a xbm image for the icon, it may not work on your platform because xbm are bitmaps for X Window System.

    Note: even after this answer you may still have problems!


    Other possible useful articles