当前位置:   article > 正文

PyQt5 QPainter在QPixmap上实现单一鼠标绘图功能。两种方式:在paintEvent函数外实现和内实现_qpixmap 填充鼠标图标

qpixmap 填充鼠标图标

在paintEvent函数外实现(即,不使用paintEvent函数):

import sys
from PyQt5.QtCore import *
from PyQt5.QtGui import *
from PyQt5.QtWidgets import *

class myMainWindow(QMainWindow):
    def __init__(self, parent=None):
        super().__init__(parent)
        self.image = QPixmap(1000, 1000)
        self.image.fill(Qt.transparent)# 填充透明色
        self.setWindowTitle("简单的画板")
        self.pos_xy = []
        self.pen = QPen(Qt.black, 2, Qt.SolidLine)
        self.painton = True
        
        self.imageLabel = QLabel()
        self.setCentralWidget(self.imageLabel)
        self.imageLabel.setPixmap(self.image)
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/繁依Fanyi0/article/detail/532741
推荐阅读
相关标签
  

闽ICP备14008679号