在QT中从C ++中绘制QML中定义的图像

时间:2016-07-13 13:27:32

标签: c++ qt qml

我在 QML 中定义了一个图像项目,我需要在这个图像上绘制点,我在中C ++ QVector 。我想使用 QPainter ,但我不知道在哪里画画,因为我不知道如何从这里获得 Pixmap QWidget 宾语。有没有想过如何在 QML 中定义的图像上绘制点(来自 C ++ )?

ApplicationWindow {
    id: window
    objectName: "window"
    visible: true
    width: 640
    height: 480

    Item {
        id: item1
        anchors.fill: parent
            Image {
                id: myPicture
                objectName: "myPicture"
                x: 0
                y: 0
                width: 640
                height: 370

                anchors.fill: parent
                source: "picture.jpg"
         }
    }
}

0 个答案:

没有答案