首页 > 解决方案 > QQuickImageProvider 类错误

问题描述

我想将 QPixmap 从 c++ 迁移到 qml。我用父 QQucikImageProvider 创建了一个类

class test : public QQuickImageProvider
{

Q_OBJECT
public:
    test():QQuickImageProvider(QQuickImageProvider::Pixmap)
    {

}
QPixmap requestPixmap(const QString & id, QSize * size, const QSize & requestedSize)
{
    int width = 100;
    int height = 50;

    if (size)
        *size = QSize(width, height);
    QPixmap pixmap(requestedSize.width() > 0 ? requestedSize.width() : width,
                   requestedSize.height() > 0 ? requestedSize.height() : height);
    pixmap.fill(QColor(id).rgba());

    return pixmap;
}

};

并在 main.cpp 中声明

int main(int argc, char *argv[])
{
...
VK::test *imgProv = new VK::test();
QQmlApplicationEngine engine;
engine.addImageProvider("myprovider",imgProv);
...
}

但在编译时我收到以下错误:

moc_api.cpp:-1: error: undefined reference to `_imp___ZN19QQuickImageProvider11qt_metacastEPKc'

moc_api.cpp:-1: error: undefined reference to `_imp___ZN19QQuickImageProvider11qt_metacallEN11QMetaObject4CallEiPPv'

moc_api.cpp:-1: error: undefined reference to `_imp___ZN19QQuickImageProvider16staticMetaObjectE'

标签: c++qtqml

解决方案


推荐阅读