I have a png file on disk at compile time. I'd like to have it included into the compiled executable. How do I define such an icon in Qt?
|
|
You basically need to use the Qt resource system. Lets say this this your resource file
In your source you can now create QIcons by referencing images from the resource
Don't forget to reference the resource file in your .pro
This example uses images in Resource file for the icons |
||||
|
|
As an alternative to Qt's resource system, you can use (your favorite image conversion utility) to convert the .png file to .xpm format, and then add these lines to your .cpp file:
...where my_converted_image_xpm is the name of the character array declared near the top of the .xpm file. This works because the .xpm image format is actually just C source code declaring a character array that is the bitmap, which QPixmap knows how to parse, e.g.:
|
|||
|
|
|
If your using Qt-Creator, there's a resource editor available for you to use. Simply create a new resource file, add a prefix and add files. Qt-Creator will automatically add it into the project file. After that, select your image from your resource and your good to go |
|||
|
|
