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_())

PyQt/Show an image using a label (last edited 2014-06-06 23:56:24 by DavidBoddie)

Unable to edit the page? See the FrontPage for instructions.