Qt Forum

    • Login
    • Search
    • Categories
    • Recent
    • Tags
    • Popular
    • Users
    • Groups
    • Search
    • Unsolved

    Update: Forum Guidelines & Code of Conduct

    [Solved]Can't load the image after I register the qml file to Qt resource system

    QML and Qt Quick
    1
    2
    7302
    Loading More Posts
    • Oldest to Newest
    • Newest to Oldest
    • Most Votes
    Reply
    • Reply as topic
    Log in to reply
    This topic has been deleted. Only users with topic management privileges can see it.
    • S
      stereomatching last edited by

      Before I register the main.qml to Qt resource system, everything are fine
      after I register the main.qml to Qt resource system, I can't open the file

      main.qml
      @
      import QtQuick 2.0

      Rectangle {
      width: 360
      height: 360

      Image{
          anchors.fill: parent
          source: "/Pictures/img_0000.jpg"
      }
      

      }
      @

      main.cpp
      @
      #include <QtGui/QGuiApplication>
      #include "qtquick2applicationviewer.h"

      int main(int argc, char *argv[])
      {
      QGuiApplication app(argc, argv);

      QtQuick2ApplicationViewer viewer;
      //viewer.setMainQmlFile&#40;QStringLiteral("qml/qmlResource/main.qml"&#41;&#41;;
      viewer.setSource(QStringLiteral("qrc:///qml/qmlResource/main.qml"));
      viewer.showExpanded();
      
      return app.exec&#40;&#41;;
      

      }
      @

      error message

      qrc:///qml/qmlResource/main.qml:7:5: QML Image: Cannot open: qrc:///Pictures/img_0000.jpg

      looks like the Image complain it can not find the image from qrc
      but I don't want the program to load the image from qrc
      it is not my intention

      1 Reply Last reply Reply Quote 0
      • S
        stereomatching last edited by

        find the answer
        "solution":http://qt-project.org/forums/viewthread/10477

        1 Reply Last reply Reply Quote 0
        • First post
          Last post