#include #include int main( int argc, char ** argv ) { QApplication app( argc, argv ); QLabel l; l.setPixmap( QPixmap( QStringLiteral( "qrc:/fill-color.png" ) ) ); l.resize( 300, 300 ); l.show(); return QApplication::exec(); }