我试图在Qt创建程序上向QLabel添加图像。但是在编译程序时出现错误:C:\Users\*****\Documents\GameAPP\main.cpp:12: error: C2027: use of undefined type 'QBitmap'
在Windows 10上使用Qt 5.7和5.6版。
#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();
}
#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
#include "mainwindow.h"
#include "ui_mainwindow.h"
MainWindow::MainWindow(QWidget *parent) :
QMainWindow(parent),
ui(new Ui::MainWindow)
{
ui->setupUi(this);
}
MainWindow::~MainWindow()
{
delete ui;
}
答案 0 :(得分:2)
您只需添加#include <QBitmap>
即可。