📜  PyQt5 |如何调整按钮内的图像?

📅  最后修改于: 2022-05-13 01:55:39.287000             🧑  作者: Mango

PyQt5 |如何调整按钮内的图像?

当我们将图像设置为按钮时,我们看到如果按钮大小小于图像,则图像将被裁剪。在本文中,我们将了解如何保留图像的实际大小。

方法#1:改变按钮的大小。

代码 :

# importing libraries
from PyQt5.QtWidgets import * 
from PyQt5.QtGui import * 
from PyQt5.QtCore import * 
import sys
  
  
class Window(QMainWindow):
    def __init__(self):
        super().__init__()
  
        # setting title
        self.setWindowTitle("Python ")
  
        # setting geometry
        self.setGeometry(100, 100, 1000, 800)
  
        # calling method
        self.UiComponents()
  
        # showing all the widgets
        self.show()
  
    # method for widgets
    def UiComponents(self):
  
        # creating a push button
        button = QPushButton("CLICK", self)
  
        # setting geometry of button
        button.setGeometry(10, 15, 100, 40)
  
        # adding action to a button
        button.clicked.connect(self.clickme)
  
        # setting background image
        button.setStyleSheet("background-image : url(image.png);")
  
        # resizing button according to size of image
        button.resize(724, 430)
  
    # action method
    def clickme(self):
  
        # printing pressed
        print("pressed")
  
# create pyqt5 app
App = QApplication(sys.argv)
  
# create the instance of our Window
window = Window()
  
# start the app
sys.exit(App.exec())

输出 :

注意:如果图像尺寸过大,则不宜使用此方法。

方法#2:将图像设置为皮肤。

代码 :

# importing libraries
from PyQt5.QtWidgets import * 
from PyQt5.QtGui import * 
from PyQt5.QtCore import * 
import sys
  
  
class Window(QMainWindow):
    def __init__(self):
        super().__init__()
  
        # setting title
        self.setWindowTitle("Python ")
  
        # setting geometry
        self.setGeometry(100, 100, 600, 400)
  
        # calling method
        self.UiComponents()
  
        # showing all the widgets
        self.show()
  
    # method for widgets
    def UiComponents(self):
  
        # creating a push button
        button = QPushButton("CLICK", self)
  
        # setting geometry of button
        button.setGeometry(100, 150, 100, 40)
  
        # adding action to a button
        button.clicked.connect(self.clickme)
  
        # setting image as skin
        button.setStyleSheet("border-image : url(image.png);")
  
  
    # action method
    def clickme(self):
  
        # printing pressed
        print("pressed")
  
# create pyqt5 app
App = QApplication(sys.argv)
  
# create the instance of our Window
window = Window()
  
# start the app
sys.exit(App.exec())

输出 :

注意:如果图像形状不是按钮,则此方法不可取。