Python Forum

Full Version: PyQt5 adding image
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
I'm trying to add an image to my login window here and I'm not sure sure how to go about adding it on line 30. addWidget of course doesn't work but not exactly sure what method to use.

import sys
from PyQt5.QtWidgets import (QApplication, QMainWindow, QWidget, QLineEdit, QPushButton, QStatusBar, QLabel,
                             QVBoxLayout)
from PyQt5.QtGui import QPixmap


class loginWindow(QMainWindow):
    def __init__(self):
        super().__init__()
        self.resize(365, 250)
        self.setWindowTitle("Log into Inventory Manager")

        self.windowForm = loginWidget()
        self.setCentralWidget(self.windowForm)


class loginWidget(QWidget):
    def __init__(self):
        super().__init__()

        logoLabel = QLabel(self)
        pixmap = QPixmap('logo.jpg')
        logoLabel.setPixmap(pixmap)

        self.userTexBox = QLineEdit()
        self.passTextBox = QLineEdit()
        self.loginButton = QPushButton("LOGIN")

        layout = QVBoxLayout(self)
        layout.
        layout.addWidget(self.userTexBox)
        layout.addWidget(self.passTextBox)
        layout.addWidget(self.loginButton)


if __name__ == "__main__":
    app = QApplication(sys.argv)
    window = loginWindow()
    window.show()
    sys.exit(app.exec_())
Never mind. Of course as soon as I post the thread I go back to the code and figure it out instantly.

layout.addWidget(logoLabel)

I was adding self and didn't need to.



(Feb-20-2021, 03:53 PM)thewolf Wrote: [ -> ]I'm trying to add an image to my login window here and I'm not sure sure how to go about adding it on line 30. addWidget of course doesn't work but not exactly sure what method to use.

import sys
from PyQt5.QtWidgets import (QApplication, QMainWindow, QWidget, QLineEdit, QPushButton, QStatusBar, QLabel,
                             QVBoxLayout)
from PyQt5.QtGui import QPixmap


class loginWindow(QMainWindow):
    def __init__(self):
        super().__init__()
        self.resize(365, 250)
        self.setWindowTitle("Log into Inventory Manager")

        self.windowForm = loginWidget()
        self.setCentralWidget(self.windowForm)


class loginWidget(QWidget):
    def __init__(self):
        super().__init__()

        logoLabel = QLabel(self)
        pixmap = QPixmap('logo.jpg')
        logoLabel.setPixmap(pixmap)

        self.userTexBox = QLineEdit()
        self.passTextBox = QLineEdit()
        self.loginButton = QPushButton("LOGIN")

        layout = QVBoxLayout(self)
        layout.
        layout.addWidget(self.userTexBox)
        layout.addWidget(self.passTextBox)
        layout.addWidget(self.loginButton)


if __name__ == "__main__":
    app = QApplication(sys.argv)
    window = loginWindow()
    window.show()
    sys.exit(app.exec_())
adjust height and width to your needs

        logoLabel = QLabel(self)
        logoLabel.setFixedHeight(32)
        logoLabel.setFixedWidth(32)
        logoLabel.setScaledContents(True)
        pixmap = QPixmap('logo.png')
        logoLabel.setPixmap(pixmap)
(Feb-20-2021, 05:26 PM)Axel_Erfurt Wrote: [ -> ]adjust height and width to your needs

        logoLabel = QLabel(self)
        logoLabel.setFixedHeight(32)
        logoLabel.setFixedWidth(32)
        logoLabel.setScaledContents(True)
        pixmap = QPixmap('logo.png')
        logoLabel.setPixmap(pixmap)


Thanks Axel I appreciate it!