Oct-15-2021, 04:57 AM
hello everyone, I am new to python GUI creation and I would like to know how to remove the application icon
Regards,
Ilyess
Regards,
Ilyess
|
how to remove icon
|
|
Oct-15-2021, 04:57 AM
hello everyone, I am new to python GUI creation and I would like to know how to remove the application icon
Regards, Ilyess
Oct-15-2021, 06:26 AM
Which application? Most will allow you to replace them.
I welcome all feedback.
The only dumb question, is one that doesn't get asked. My Github How to post code using bbtags Download my project scripts
Oct-15-2021, 09:38 AM
import tkinter
import tempfile, base64, zlib
ICON = zlib.decompress(base64.b64decode('eJxjYGAEQgEBBiDJwZDBy'
'sAgxsDAoAHEQCEGBQaIOAg4sDIgACMUj4JRMApGwQgF/ykEAFXxQRc='))
_, ICON_PATH = tempfile.mkstemp()
with open(ICON_PATH, 'wb') as icon_file:
icon_file.write(ICON)
tk = tkinter.Tk()
tk.iconbitmap(default=ICON_PATH)
label = tkinter.Label(tk, text="Window with transparent icon.")
label.pack()
tk.mainloop()
I welcome all feedback.
The only dumb question, is one that doesn't get asked. My Github How to post code using bbtags Download my project scripts
Oct-15-2021, 10:05 AM
(Oct-15-2021, 09:38 AM)menator01 Wrote: Thanks you ! |
|
|
| Possibly Related Threads… | |||||
| Thread | Author | Replies | Views | Last Post | |
|
|
[PyQt] Setting icon on QAction from outside QGuiApplication | gradlon93 | 3 | 4,453 |
Jan-04-2023, 11:37 AM Last Post: gradlon93 |
| PyQt6 QAction with icon and string | malonn | 2 | 4,091 |
Sep-12-2022, 11:59 AM Last Post: malonn |
|
| Icon in tkinter | menator01 | 8 | 12,116 |
May-03-2020, 02:01 PM Last Post: wuf |
|
| [Tkinter] Password Reveal Icon | Evil_Patrick | 2 | 6,889 |
Nov-29-2019, 02:20 PM Last Post: Evil_Patrick |
|
| [Tkinter] Window Icon | Evil_Patrick | 6 | 13,175 |
Oct-18-2019, 11:26 AM Last Post: Evil_Patrick |
|
| Button with Image Icon | Friend | 2 | 8,788 |
Jul-25-2019, 09:39 AM Last Post: Friend |
|
| [PyQt] Hide Dock Icon for QSystemTrayIcon App | AeglosGreeenleaf | 0 | 5,048 |
Jun-20-2019, 07:21 PM Last Post: AeglosGreeenleaf |
|
| [PyQt] How is this tray icon throbber done? | JackDinn | 7 | 7,129 |
Mar-05-2018, 02:19 PM Last Post: JackDinn |
|