[solved] Images Not Showing in Deployment.
-
wrote on 10 Mar 2011, 18:00 last edited by
Hi,
I have developed a small application which has some images on its UI. The images look fine during designing and previewing the form but when I run the application, images don't show..
Please help me in this regard.Regards,
Khalid Mushtaq -
wrote on 10 Mar 2011, 18:22 last edited by
Did you remember to deploy the image format plugins?
-
wrote on 10 Mar 2011, 18:40 last edited by
How are you using the images? Are they compiled in the executable as resources or are You using them directly from the file system.
-
wrote on 10 Mar 2011, 20:42 last edited by
- you need to deploy imageformats plugins
- if it is Qt for visual studio you may need also include manifest file + msvc*.dll
(and even on some systems like vista put them also in imageformats/ folder)
-
wrote on 11 Mar 2011, 06:09 last edited by
I created a resource file and added images to it, then used from there but it's not displaying images.
I am using QT SDK 1.1
Regards,
Khalid Mushtaq -
wrote on 11 Mar 2011, 08:37 last edited by
[quote author="khalidmushtaq65" date="1299823755"]I created a resource file and added images to it, then used from there but it's not displaying images.
I am using QT SDK 1.1
Regards,
Khalid Mushtaq[/quote]Does your application show images if you load them from disk or from the web?
If not, then your problem is the distribution of your image plugins. If it does, then the problem is with the way you address your image files.
-
wrote on 11 Mar 2011, 20:55 last edited by
In the Form Designer, I created an action from the action editior and used an image to show beside that action text from the resources file..
-
wrote on 11 Mar 2011, 21:17 last edited by
You are not answering the questions that you are being asked.
-
wrote on 11 Mar 2011, 21:20 last edited by
Application doesn't show images when I load them from disk..
How can I fix the distribution of image plugins? -
wrote on 11 Mar 2011, 21:29 last edited by
Please detail the exact way in which you have your files laid out. Where is what relevant file in your distribution?
-
wrote on 12 Mar 2011, 19:28 last edited by
I have fixed the issue.. just added the resources file
RESOURCES = resources.qrc
in my .pro file..
Thanks all for your help.:-)
Regards,
Khalid Mushtaq -
wrote on 5 Apr 2011, 09:03 last edited by
Helo Team,
can somebody guide how to create a resource file and also how to create Sgnals and Slot and connect them through Qt creator ?
-
wrote on 5 Apr 2011, 09:31 last edited by
You don't use signals and slots to "connect" a resource file to anything. A resource file provides a virtual file system that you can use from inside your Qt application for read-only access to your resource files. You can create such a file from Qt Creator using CTRL+N, choosing the Qt option in the bottom left list, and "Qt Resource file" from the list on the right. Files you add are accessible using the normal Qt classes (almost everywhere Qt accepts a file name) by starting the file name with ":/".
@
QImage myImage(":/images/myImage.png");
@
The above would load an image from the resources that was stored under the "images" directory in the resource. -
wrote on 5 Apr 2011, 09:48 last edited by
thanks..now I understood about creating and using the .qrc files..
let me know how to create a SLOT,Signal and to connect them using Creator IDE.. -
wrote on 5 Apr 2011, 10:29 last edited by
Signals and slots can in a limited way be connected through the designer interface of Qt Creator. Only signals and slots inside the form you are creating (that is, between the widgets that you have put on the form) can be connected. For other signals and slots, you need to make the connections in code.