gpt4 book ai didi

C++/Qt - 错误 : C2027: use of undefined type 'QBitmap'

转载 作者:行者123 更新时间:2023-11-30 03:36:12 25 4
gpt4 key购买 nike

我正在尝试将图像添加到 Qt creator 程序上的 QLabel。但是,在编译程序时出现错误:C:\Users\*****\Documents\GameAPP\main.cpp:12: error: C2027: use of undefined type 'QBitmap'

在 Windows 10 上使用 Qt 5.7 和 5.6 版。

这是我的代码:

main.cpp :

#include "mainwindow.h"
#include <QApplication>

int main(int argc, char *argv[])
{
QApplication a(argc, argv);
MainWindow w;
w.show();
QLabel *l = new QLabel();
QPixmap p("C:\Users\*****\Pictures\Start_Orb.png");
l->setPixmap(p);
l->setMask(p.mask()); //error at this line
l->setFixedSize(20, 20);
l->move(20, 20);
l->show();
return a.exec();
}

主窗口.h:

#ifndef MAINWINDOW_H
#define MAINWINDOW_H

#include <QMainWindow>
#include <QPixmap>
#include <QLabel>

namespace Ui {
class MainWindow;
}

class MainWindow : public QMainWindow
{
Q_OBJECT

public:
explicit MainWindow(QWidget *parent = 0);
~MainWindow();

private:
Ui::MainWindow *ui;
};

#endif // MAINWINDOW_H

主窗口.cpp

#include "mainwindow.h"
#include "ui_mainwindow.h"

MainWindow::MainWindow(QWidget *parent) :
QMainWindow(parent),
ui(new Ui::MainWindow)
{
ui->setupUi(this);
}

MainWindow::~MainWindow()
{
delete ui;
}

最佳答案

你只需要加上#include <QBitmap>它将起作用。

关于C++/Qt - 错误 : C2027: use of undefined type 'QBitmap' ,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/40810131/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com