Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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?

share|improve this question
Do you mean without loading the icon data from the resources? – Georg Fritzsche Apr 25 '10 at 17:52
I 'd like to include the resource into the executable, so that it's not loaded at runtime. Is that possible? – Regof Apr 25 '10 at 18:30

3 Answers

up vote 7 down vote accepted

You basically need to use the Qt resource system.
Check out Compiled-In Resources here.

Lets say this this your resource file

<!DOCTYPE RCC><RCC version="1.0">
 <qresource>
     <file>images/copy.png</file>
     <file>images/cut.png</file>
     <file>images/paste.png</file>
 </qresource>
</RCC>

In your source you can now create QIcons by referencing images from the resource

QIcon(":/images/cut.png")

Don't forget to reference the resource file in your .pro

 RESOURCES = application.qrc

This example uses images in Resource file for the icons

share|improve this answer
perfect, and then - hoe do I define the Icon using that compiled-in resource? – Regof Apr 25 '10 at 19:08

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:

#include "my_converted_image.xpm"
[...]
QPixmap myPixmap((const char **) my_converted_image_xpm);

...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.:

/* XPM */
static const char * const my_converted_image_xpm[] = {
"16 16 65 1",
"       c None",
".      c #0F0F04",
[...]
"                "};
share|improve this answer

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

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.