Qt Code:
  1. #include <QApplication>
  2. #include <QPixmap>
  3. #include <QLabel>
  4. int main (int argc, char **argv)
  5. {
  6.  
  7. QApplication app(argc,argv);
  8. QLabel lab(0,Qt::FramelessWindowHint | Qt::WindowStaysOnTopHint);
  9. QPixmap p("plane.jpg");
  10.  
  11.  
  12. lab.setText("Hello");
  13. lab.show();
  14. lab.resize(300,200);
  15. p=p.scaled ( lab.width(),lab.height(), Qt::IgnoreAspectRatio, Qt::SmoothTransformation );
  16. lab.setPixmap(p);
  17. return app.exec();
  18. }
To copy to clipboard, switch view to plain text mode 
Dear JPN!
Now, You should happy for above. Give any suggestion with free mind.