我是靠谱客的博主 过时钻石,最近开发中收集的这篇文章主要介绍PyQt5基本控件详解之QPen与QBrush(十八)QBrush,觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

QPen(钢笔)是一个基本的图形对象,用于绘制直线,曲线或者给轮廓画出矩形,椭圆形,多边形及其他形状

实例:QPen的使用

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

class Drawing(QWidget):
    def __init__(self):
        super().__init__()
        self.initUI()

    def initUI(self):
        #设置初始位置及窗口大小和标题
        self.setGeometry(300,300,280,270)
        self.setWindowTitle('钢笔样式例子')
    def paintEvent(self,e):

        qp=QPainter()
        qp.begin(self)

        #自定义的方法
        self.drawLines(qp)

        qp.end()
    def drawLines(self,qp):

        #颜色黑色,宽度2,线条样式:SolidLine,从坐标1绘制到坐标2,下面类似,不在标注
        pen=QPen(Qt.black,2,Qt.SolidLine)
        qp.setPen(pen)
        qp.drawLine(20,40,520,40)

        pen.setStyle(Qt.DashLine)
        qp.setPen(pen)
        qp.drawLine(20,80,250,80)

        pen.setStyle(Qt.DashDotLine)
        qp.setPen(pen)
        qp.drawLine(20, 120, 250, 120)

        pen.setStyle(Qt.DotLine)
        qp.setPen(pen)
        qp.drawLine(20, 160, 250, 160)

        pen.setStyle(Qt.DashDotDotLine)
        qp.setPen(pen)
        qp.drawLine(20, 200, 250, 200)

        pen.setStyle(Qt.CustomDashLine)
        pen.setDashPattern([1,4,5,4])
        qp.setPen(pen)
        qp.drawLine(20, 240, 250, 240)
if __name__ == '__main__':
    app=QApplication(sys.argv)
    demo=Drawing()
    demo.show()
    sys.exit(app.exec_())

 
 

    效果如图
    这里写图片描述

    代码分析

    在这个例子中,使用6中不同的线条样式绘制了6条线,其中前五条是使用预定义的线条样式,也可以自定义线条样式,最后一条就是自定义绘制的
    创建一个QPen对象,为了能更加清晰地看清各线之间的差异,将颜色设置为黑色,宽度设置为2像素,Qt.SolidLine是预定义的线条样式之一

    pen=QPen(Qt.black,2,Qt.SolidLine)
     
     

      代码自定义了一种线条样式,使用Qt.CustomDashLine创建线条样式,然后调用setDashPattern()方法使用数字列表定义样式,数字列表的个数必须是偶数,在本例中数字列表是【1,4,5,4】,在数字列表中,奇位数(1,3,5….的位置)代表一段横线,偶数(2,4,6…的位置)代表两端横线之间的空余距离,在数字列表中数字越大,代表的横线和空余距离就越大,本例中数字列表【1,4,5,4】所代表的意思是:1像素宽度的横线,4像素宽度的空余距离,5像素宽度的横线,4像素宽度的空余距离

       pen.setStyle(Qt.CustomDashLine)
              pen.setDashPattern([

      • QPen
        • 实例:QPen的使用
          • 代码分析
      • QBrush
        • 实例:QBrush的使用
          • 代码分析

      QBrush

      QBrush(画刷)是一个基本的图形对象,用于填充如矩形,椭圆形,多边形等形状,QBrush有三种类型,预定义,过渡,和纹理图案

      实例:QBrush的使用

      import sys
      from PyQt5.QtGui import *
      from PyQt5.QtWidgets import *
      from PyQt5.QtCore import *
      
      class Drawing(QWidget):
          def __init__(self,parent=None):
              super(Drawing, self).__init__(parent)
              self.initUI()
          def initUI(self):
              self.setGeometry(300,300,365,280)
              self.setWindowTitle('画刷例子')
              self.show()
      
          def paintEvent(self,e):
      
              qp=QPainter()
              qp.begin(self)
              self.drawLines(qp)
              qp.end()
          def drawLines(self,qp):
              brush=QBrush(Qt.SolidPattern)
              qp.setBrush(brush)
              qp.drawRect(10,15,90,60)
      
              brush = QBrush(Qt.Dense1Pattern)
              qp.setBrush(brush)
              qp.drawRect(130, 15, 90, 60)
      
              brush = QBrush(Qt.Dense2Pattern)
              qp.setBrush(brush)
              qp.drawRect(250, 15, 90, 60)
      
      
              brush = QBrush(Qt.Dense3Pattern)
              qp.setBrush(brush)
              qp.drawRect(10, 105, 90, 60)
      
      
              brush = QBrush(Qt.DiagCrossPattern)
              qp.setBrush(brush)
              qp.drawRect(10, 105, 90, 60)
      
      
              brush = QBrush(Qt.Dense5Pattern)
              qp.setBrush(brush)
              qp.drawRect(130, 105, 90, 60)
      
      
              brush = QBrush(Qt.Dense6Pattern)
              qp.setBrush(brush)
              qp.drawRect(250, 105, 90, 60)
      
      
              brush = QBrush(Qt.HorPattern)
              qp.setBrush(brush)
              qp.drawRect(10, 195, 90, 60)
      
              brush = QBrush(Qt.VerPattern)
              qp.setBrush(brush)
              qp.drawRect(130, 195, 90, 60)
      
              brush = QBrush(Qt.BDiagPattern)
              qp.setBrush(brush)
              qp.drawRect(250, 195, 90, 60)
      
      
      if __name__ == '__main__':
          app = QApplication(sys.argv)
          demo = Drawing()
          demo.show()
          sys.exit(app.exec_())
      
       
       

        效果如下
        这里写图片描述

        代码分析

        在这个例子中,在窗口中绘制9中不同背景填充的矩形
        以下代码定义了QBrush对象,然后将QPainter对象的画刷设置成Qbrush对象,并通过调用drawRect()方法绘制矩形

        brush = QBrush(Qt.Dense1Pattern)
        qp.setBrush(brush)
        qp.drawRect(130, 15, 90, 60)
         
         

          • QPen
            • 实例:QPen的使用
              • 代码分析
          • QBrush
            • 实例:QBrush的使用
              • 代码分析

          源码以及相关文件下载:https://download.csdn.net/download/jia666666/10597897

          最后

          以上就是过时钻石为你收集整理的PyQt5基本控件详解之QPen与QBrush(十八)QBrush的全部内容,希望文章能够帮你解决PyQt5基本控件详解之QPen与QBrush(十八)QBrush所遇到的程序开发问题。

          如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

          本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
          点赞(49)

          评论列表共有 0 条评论

          立即
          投稿
          返回
          顶部