1. Import image resources
Method 1: Import directly from the source image (the image is located in the images folder)
self.label1=QLabel(self) self.label1.setPixmap(QPixmap(r"images/head.jpg")) layout.addWidget(self.label1) #或者 layout.addWidget(QLabel(self, pixmap=QPixmap("images/head.jpg")))
Method 2: Use qrc resources to import
1. First write the qrc file
images/head.jpg images/body.jpg
2. Convert the qrc file into a py file
The conversion command is:
pyrcc5 res.qrc -o res_rc.py
3 , import res_rc.py: import res_rc
4, layout.addWidget(QLabel(self,pixmap=QPixmap(":/images/head.jpg")))
Note that you need to add: / symbol as a prefix.
For more Python related technical articles, please visit thePython Tutorialcolumn to learn!
The above is the detailed content of How to add pictures in python. For more information, please follow other related articles on the PHP Chinese website!