4
votes
4answers
592 views
How do you load an embedded icon from an exe file with PyWin32?
I have an exe file generated with py2exe. In the setup.py I specify an icon to be embedded in the exe:
windows=[{'script': 'my_script.py','icon_resources': [(0, 'my_icon.ico')], ... …
1
vote
How do you load an embedded icon from an exe file with PyWin32?
@efotinis: You're right.
Here is a workaround until py2exe gets fixed and you don't want to include the same icon twice:
hicon = win32g …
