Show an image using a label

On the #pyqt IRC channel on Freenode, elhobab asked how to show an image.

   1 import sys
   2 from PyQt4.QtGui import *
   3 
   4 app = QApplication(sys.argv)
   5 
   6 label = QLabel()
   7 pixmap = QPixmap(sys.argv[1])
   8 label.setPixmap(pixmap)
   9 label.show()
  10 
  11 sys.exit(app.exec_())

PyQtWiki: Show an image using a label (last edited 2010-08-26 16:33:54 by DavidBoddie)