Re: Retrieving a file's icon
Notice a missing escape character:
Code:
QString file = "C:\\application.exe";
Re: Retrieving a file's icon
HI, following a topic - does anyone knows way to extract icons stored in dll's resources?
Re: Retrieving a file's icon
Re: Retrieving a file's icon
And once you start converting HICON to QIcon/QPixmap, notice convertHIconToPixmap() in src/gui/image/qpixmap_win.cpp ;)
Re: Retrieving a file's icon
Re: Retrieving a file's icon
Thanks, that answers all my questions in this topic.
Re: Retrieving a file's icon
Dear all,
can anyone help me to save QIcon as an image file.
Thanks in advance.
Re: Retrieving a file's icon
I'm not sure, because recently i had no time for programming private project(i got enough at work), but as far as i remember, i have made some changes in qt imageformat plugin for ico format taken from kde sources.
Kde had writing to ico files method in qt3 but after migration to qt 4 only ico reading was ported and writing method was commented and i reworked it (using some other open software as reference(i don't remember its name now) so it saves ico files in current version(of course it's limited implementation and it doesn't support all possible formats)
http://downloads.sourceforge.net/gra...8&big_mirror=0
i hope it will work for you(i didn't tested in on any linux)
CU