Uploaded image for project: 'Qt'
  1. Qt
  2. QTBUG-75044

AnimationImage load online webp image error

    XMLWordPrintable

Details

    • Bug
    • Resolution: Duplicate
    • P3: Somewhat important
    • None
    • 5.9.2, 5.9.7, 5.12.0, 5.12.1, 5.12.2
    • None
    • Qt 5.9.x ~ Qt 5.12.x Windows Android iOS Mac VS
    • All

    Description

      QML AnimatedImage: Error Reading Animated Image File https://p.upyun.com/demo/webp/webp/animated-gif-0.webp

      QNetworkReplyHttpImplPrivate::_q_startOperation was called more than once QUrl("https://p.upyun.com/demo/webp/webp/animated-gif-0.webp")
      Sequential devices are not supported
      qrc:/main.qml:13:9: QML AnimatedImage: Error Reading Animated Image File https://p.upyun.com/demo/webp/webp/animated-gif-0.webp
      
      import QtQuick 2.9
      import QtQuick.Window 2.2
      
      Window {
          visible: true
          width: 640
          height: 480
          title: qsTr("Hello World")
      
          Column {
              anchors.centerIn: parent
              // error
              AnimatedImage {
                  source: "https://p.upyun.com/demo/webp/webp/animated-gif-0.webp"
                  Text {
                      text: qsTr("AnimatedImage online webp animation image")
                      color: "red"
                  }
              }
      
              // ok
              Image {
                  source: "https://p.upyun.com/demo/webp/webp/animated-gif-0.webp"
                  Text {
                      text: qsTr("Image webp online animation image")
                      color: "red"
                  }
              }
      
              // ok
              AnimatedImage {
                  source: "qrc:/image/animated-gif-0.webp"
                  Text {
                      text: qsTr("AnimatedImage webp local animation image")
                      color: "red"
                  }
              }
          }
      }
      

      Attachments

        Issue Links

          No reviews matched the request. Check your Options in the drop-down menu of this sections header.

          Activity

            People

              qt.team.quick.subscriptions Qt Quick and Widgets Team
              cbdg cbdg0222
              Votes:
              2 Vote for this issue
              Watchers:
              5 Start watching this issue

              Dates

                Created:
                Updated:
                Resolved:

                Gerrit Reviews

                  There are no open Gerrit changes