前提・実現したいこと
pythonのPyQt5を使い、画像を表示するプログラムを作りたいのですが、
エラーは出ないのに、うまく表示されません。
発生している問題・エラーメッセージ
エラーメッセージ
該当のソースコード
from PyQt5.QtWidgets import QApplication,QWidget from PyQt5.QtWidgets import QLabel from PyQt5 import QtGui class App(QWidget): def __init__(self): super().__init__() self.title = 'welcome' self.left = 500 self.top = 250 self.width = 500 self.height = 300 self.initUI() def initUI(self): self.setWindowTitle(self.title) self.setGeometry(self.left,self.top,self.width,self.height) label_welcome = QLabel(self) label_welcome.setText('welcome') label_welcome.setFont(QtGui.QFont("Times",24,QtGui.QFont.Bold)) label_welcome.move(10,10) label_image = QLabel(self) image = QtGui.QPixmap('image.jpeg') label_image.setPixmap(image) label_image.move(10,10) self.show() app = QApplication([]) win = App() app.exec_()
試したこと
読み込む画像ファイルをjpegからpngに変えたりしましたが、うまくできませんでした。
補足情報(FW/ツールのバージョンなど)
ここにより詳細な情報を記載してください。
回答2件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。