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
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
- duplicates
-
QTBUG-70245 AnimationImage cannot load Network picture download .webp format
- Closed