QCustomPlot中的QImage / Logo

时间:2014-06-24 01:48:46

标签: c++ qt qcustomplot

如何在QCustomPlot情节中添加徽标/ QImage?

我对Qt和QCustomPlot都很新。

我正在使用C ++

QCustomPlot* plot = new QCustomPlot(parent);
logo = new QImage();
bool success  = logo->load("Logo-Wallpaper.png");

如何在剧情中添加徽标?

1 个答案:

答案 0 :(得分:0)

您可以通过徽标图像设置标签的像素图,并将标签添加到图中的布局中:

QLabel *myLabel = new QLabel(this);
myLabel->setPixmap(QPixmap::fromImage(logo));

QGridLayout * layout = new QGridLayout(plot);
layout->setAlignment(Qt::AlignRight | Qt::AlignTop);
layout->addWidget(myLabel ,0,0);