我有一个QLabel
,其中包含一个QPixmap
图片,我想使此标签的大小可调整,以便用户调整其大小。
我知道要做到这一点,我需要创建一个继承自QLabel
的标签,我已经做到了,但是现在不知道该怎么办,请帮助我,这很重要。
我的代码:
in header:
class resizeLabel: public QLabel
{
public:
resizeLabel(parent):{}
};
in cpp:
resizeLabel *rl= new resizeLabel(this);
QPixmap image(path);
rl->setPixmap(image);
rl->show();
我不知道如何在标签上调整此图像的大小,以便用户调整其大小。