7

如何将 QML 图像保存到手机内存中?

如果保存图像是适用的,我有这种情况,我需要在图像中添加一些文本(我们可以想象它,因为我们有一个透明图像[保存文本]并将它放在第二个图像上,所以最后我们有一张我们可以将其保存到手机内存中的图像)

4

2 回答 2

7

使用 Qt 5.4+,您可以直接在 Qml 中使用: grabToImage

于 2015-02-03T11:47:43.607 回答
7

不是Image直接从。QDeclarativeImagepixmap,setPixmappixmapChange方法,但由于某种原因没有声明属性。所以你不能在 qml 中使用它。不幸的是,它也不能在 C++ 中使用——它是一个私有类。

您可以做的是将图形项目绘制到像素图并将其保存到文件中。

class Capturer : public QObject
{
    Q_OBJECT
public:
    explicit Capturer(QObject *parent = 0);
    Q_INVOKABLE void save(QDeclarativeItem *obj);
};

void Capturer::save(QDeclarativeItem *item)
{
    QPixmap pix(item->width(), item->height());
    QPainter painter(&pix);
    QStyleOptionGraphicsItem option;
    item->paint(&painter, &option, NULL);
    pix.save("/path/to/output.png");
}

注册“capturer”上下文变量:

int main()
{
    // ...
    Capturer capturer;
    QmlApplicationViewer viewer;
    viewer.rootContext()->setContextProperty("capturer", &capturer);
    // ...
}

并在你的 qml 中使用它:

Rectangle {
    // ...
    Image {
        id: img
        source: "/path/to/your/source"
    }
    MouseArea {
        anchors.fill: parent
        onClicked: {
            capturer.save(img)
        }
    }
}
于 2012-06-13T16:24:16.160 回答