qt 이미지 출력

Qt 2011. 6. 3. 10:02

1.

QLabel *label = new QLabel(tr("Label Text"));
 label->setPixmap(QPixmap("aaa.png"));
 label->setScaledContents(true);     //라벨크기에 맞게 이미지 크기조절



2.

 QIcon icon;
 icon.addFile(QString::fromUtf8("aaa.png"), QSize(),
   QIcon::Normal, QIcon::On);
button->setIcon(icon);
button->setIconSize(QSize(55, 50));

'Qt' 카테고리의 다른 글

MySQL - Qt 한글 출력문제  (0) 2011.06.27
Qt 4.7 and MySQL-plugin with Mingw on Windows XP(Eclipse)  (0) 2011.06.22
qt project file(.pro)  (0) 2011.05.16
형변환, 숫자, 문자, int, QString  (0) 2011.04.18
Qt를 Wince6.0에 Build하는방법  (0) 2011.04.08
Posted by 요지
,