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 Qt application that has some embedded JPG files that I want to display. When I compile and run both the debug and release versions on my machine, everything works perfectly. When I copy the application to a thumb drive and run it from there on my machine, it works fine. On the thumb drive and another developer's machine: OK. On the thumb drive on a third, non-developer's machine: no images!

proj.pri
RESOURCES += ./proj.qrc

proj.qrc:
<RCC>
<qresource prefix="/myApp">
    <file>Gui/Resources/logo.jpg</file>
    <file>Gui/Resources/another_image.jpg</file>
</qresource>
</RCC>

main.cpp:
{
    ...
    QImage *logo  = new QImage( ":/myApp/Gui/Resources/logo.jpg" );
    QImage *image = new QImage( ":/myApp/Gui/Resources/another_image.jpg" );

    myClass *d1 = new myClass( "Some Text", 48, 30, logo );
    myClass *d2 = new myClass( "Some More Text", 48, 30, another_image );
    ...
}

I have confirmed that the images are being added to the executable by commenting out the RESOURCES line in the .pri file. The size of the binary drops by the size of the images plus a bit; when I run the application, the images do not appear. I un-comment the RESOURCES line and everything works as described above.

What am I missing here? A DLL on the non-developer's machine? A

Environment:

  • Win XP
  • Qt 4.6.1
  • Visual Studio 2008
  • Qt Creator 1.3.1
share|improve this question

1 Answer

up vote 9 down vote accepted

It needs jpeg plugin to load images. If you have Qt installed they would be in %QTDIR%\plugins\imageformats.

Copy qjpeg4.dll into plugin folder on your thumb drive.

root/app.exe
root/qt.conf
root/plugins/imageformats/qjpeg4.dll

In qt.conf file set path to your plugins dir:

[Paths]
plugins=./plugins
share|improve this answer
I have experienced this before and this is the solution I stumbled on. OP, keep in mind that the directory structure may matter. – San Jacinto Feb 11 '10 at 0:41
1  
BTW, copied imageformats/qjpeg4.dll into root (as in the example above) and left out qt.conf and root/plugins. – dwj Feb 11 '10 at 2:43
Yeah this might be a bit redundant, but I don't remember exact order of lookup Qt does :). – Eugene Feb 11 '10 at 4:56
..thanks...this really helped me. – csmithmaui Feb 23 '10 at 9:09

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.