我在处理qml图像时遇到了问题,它只显示像素<2000的图像,而其他图像则显示黑色矩形, 这是关于这个主题的另一个话题。 https://forum.qt.io/topic/45355/qml-image-showing-black-rectangle-instead-of-image
好。我怎么能显示大于2000像素的图像?如何使用QQuickImageProvider
?
import QtQuick 2.3
import QtQuick.Controls 1.2
ApplicationWindow {
visible: true
width: 640
height: 480
title: qsTr("Test")
Image {
id: image1
x: 10
y: 10
source: "testImage.png"
}
}
感谢