我有一個標籤,從像素圖設置如下:QLabel旋轉
QLabel* label_image;
label_image= new QLabel (this);
label_image->setGeometry(0, 0, 500, 30);
QPixmap pm;
pm ...
label_image->setPixmap(pm);
現在我想通過90度旋轉。如何做?
我有一個標籤,從像素圖設置如下:QLabel旋轉
QLabel* label_image;
label_image= new QLabel (this);
label_image->setGeometry(0, 0, 500, 30);
QPixmap pm;
pm ...
label_image->setPixmap(pm);
現在我想通過90度旋轉。如何做?
內部像素圖的旋轉會產生與旋轉標籤本身相同的效果嗎? – vahancho
@vahancho 如何旋轉標籤? – MelMed
你不能旋轉'QLabel'對象本身,但你可以旋轉它的像素圖。 – thuga