#include<QApplication>
#include<QLabel>
#include<QPixmap>
int main( int argc, char **argv )
{
QApplication app( argc, argv ) ;
QPixmap *image = new QPixmap("a.bmp") ;
QLabel *label = new QLabel("Kim Sukryu", 0) ;
image->load( "a.bmp", 0 ) ;
label->setPixmap( *image ) ;
label->show() ;
return app.exec() ;
}
댓글 없음:
댓글 쓰기