绘图

绘图由方法完成,绘图的代码要放在QPainter对象的begin()end()方法之间。是低级接口。

我们从画一些Unicode文本开始。

写了一些文本上下居中对齐的俄罗斯Cylliric语言的文字。

  1. def paintEvent(self, event):
  2. ...

在绘画事件内完成绘画动作。

  1. qp = QPainter()
  2. qp.begin(self)
  3. self.drawText(event, qp)
  4. qp.end()

QPainter是低级的绘画类。所有的绘画动作都在这个类的begin()end()方法之间完成,绘画动作都封装在drawText()内部了。

  1. qp.setPen(QColor(168, 34, 3))
  2. qp.setFont(QFont('Decorative', 10))

为文字绘画定义了笔和字体。

  1. qp.drawText(event.rect(), Qt.AlignCenter, self.text)

drawText()方法在窗口里绘制文本,rect()方法返回要更新的矩形区域。

程序展示:

点是最简单的绘画了。

  1. #!/usr/bin/python3
  2. # -*- coding: utf-8 -*-
  3. """
  4. ZetCode PyQt5 tutorial
  5. In the example, we draw randomly 1000 red points
  6. on the window.
  7. Author: Jan Bodnar
  8. Website: zetcode.com
  9. Last edited: August 2017
  10. """
  11. from PyQt5.QtWidgets import QWidget, QApplication
  12. from PyQt5.QtGui import QPainter
  13. from PyQt5.QtCore import Qt
  14. import sys, random
  15. class Example(QWidget):
  16. def __init__(self):
  17. super().__init__()
  18. self.initUI()
  19. def initUI(self):
  20. self.setGeometry(300, 300, 300, 190)
  21. self.setWindowTitle('Points')
  22. self.show()
  23. def paintEvent(self, e):
  24. qp = QPainter()
  25. qp.begin(self)
  26. self.drawPoints(qp)
  27. qp.end()
  28. def drawPoints(self, qp):
  29. qp.setPen(Qt.red)
  30. size = self.size()
  31. for i in range(1000):
  32. x = random.randint(1, size.width()-1)
  33. y = random.randint(1, size.height()-1)
  34. qp.drawPoint(x, y)
  35. if __name__ == '__main__':
  36. app = QApplication(sys.argv)
  37. ex = Example()
  38. sys.exit(app.exec_())

我们在窗口里随机的画出了1000个点。

设置笔的颜色为红色,使用的是预定义好的颜色。

  1. size = self.size()
  1. qp.drawPoint(x, y)

drawPoint()方法绘图。

程序展示:

points

颜色

颜色是一个物体显示的RGB的混合色。RBG值的范围是0~255。我们有很多方式去定义一个颜色,最常见的方式就是RGB和16进制表示法,也可以使用RGBA,增加了一个透明度的选项,透明度值的范围是0~1,0代表完全透明。

  1. #!/usr/bin/python3
  2. # -*- coding: utf-8 -*-
  3. """
  4. ZetCode PyQt5 tutorial
  5. This example draws three rectangles in three
  6. #different colours.
  7. Author: Jan Bodnar
  8. Website: zetcode.com
  9. Last edited: August 2017
  10. """
  11. from PyQt5.QtWidgets import QWidget, QApplication
  12. from PyQt5.QtGui import QPainter, QColor, QBrush
  13. import sys
  14. class Example(QWidget):
  15. def __init__(self):
  16. super().__init__()
  17. self.initUI()
  18. def initUI(self):
  19. self.setGeometry(300, 300, 350, 100)
  20. self.setWindowTitle('Colours')
  21. self.show()
  22. def paintEvent(self, e):
  23. qp = QPainter()
  24. qp.begin(self)
  25. self.drawRectangles(qp)
  26. qp.end()
  27. def drawRectangles(self, qp):
  28. col = QColor(0, 0, 0)
  29. col.setNamedColor('#d4d4d4')
  30. qp.setPen(col)
  31. qp.setBrush(QColor(200, 0, 0))
  32. qp.drawRect(10, 15, 90, 60)
  33. qp.setBrush(QColor(255, 80, 0, 160))
  34. qp.drawRect(130, 15, 90, 60)
  35. qp.setBrush(QColor(25, 0, 90, 200))
  36. qp.drawRect(250, 15, 90, 60)
  37. if __name__ == '__main__':
  38. app = QApplication(sys.argv)
  39. ex = Example()
  40. sys.exit(app.exec_())

我们画出了三个颜色的矩形。

  1. color = QColor(0, 0, 0)
  2. color.setNamedColor('#d4d4d4')

使用16进制的方式定义一个颜色。

  1. qp.setBrush(QColor(200, 0, 0))
  2. qp.drawRect(10, 15, 90, 60)

定义了一个笔刷,并画出了一个矩形。笔刷是用来画一个物体的背景。drawRect()有四个参数,分别是矩形的x、y、w、h。 然后用笔刷和矩形进行绘画。

程序展示:

QPen是基本的绘画对象,能用来画直线、曲线、矩形框、椭圆、多边形和其他形状。

在这个例子里,我们用不同的笔画了6条直线。PyQt5有五个预定义的笔,另外一个笔的样式使我们自定义的。

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

新建一个QPen对象,设置颜色黑色,宽2像素,这样就能看出来各个笔样式的区别。Qt.SolidLine是预定义样式的一种。

  1. pen.setStyle(Qt.CustomDashLine)
  2. pen.setDashPattern([1, 4, 5, 4])
  3. qp.setPen(pen)

程序展示:

pen styles

QBrush也是图像的一个基本元素。是用来填充一些物体的背景图用的,比如矩形,椭圆,多边形等。有三种类型:预定义、渐变和纹理。

  1. #!/usr/bin/python3
  2. # -*- coding: utf-8 -*-
  3. """
  4. ZetCode PyQt5 tutorial
  5. This example draws nine rectangles in different
  6. brush styles.
  7. Author: Jan Bodnar
  8. Website: zetcode.com
  9. Last edited: August 2017
  10. """
  11. from PyQt5.QtWidgets import QWidget, QApplication
  12. from PyQt5.QtGui import QPainter, QBrush
  13. from PyQt5.QtCore import Qt
  14. import sys
  15. class Example(QWidget):
  16. def __init__(self):
  17. super().__init__()
  18. self.initUI()
  19. def initUI(self):
  20. self.setGeometry(300, 300, 355, 280)
  21. self.setWindowTitle('Brushes')
  22. self.show()
  23. def paintEvent(self, e):
  24. qp = QPainter()
  25. qp.begin(self)
  26. self.drawBrushes(qp)
  27. qp.end()
  28. def drawBrushes(self, qp):
  29. brush = QBrush(Qt.SolidPattern)
  30. qp.setBrush(brush)
  31. qp.drawRect(10, 15, 90, 60)
  32. qp.setBrush(brush)
  33. brush.setStyle(Qt.Dense2Pattern)
  34. qp.setBrush(brush)
  35. qp.drawRect(250, 15, 90, 60)
  36. brush.setStyle(Qt.DiagCrossPattern)
  37. qp.setBrush(brush)
  38. qp.drawRect(10, 105, 90, 60)
  39. brush.setStyle(Qt.Dense5Pattern)
  40. qp.setBrush(brush)
  41. qp.drawRect(130, 105, 90, 60)
  42. brush.setStyle(Qt.Dense6Pattern)
  43. qp.setBrush(brush)
  44. qp.drawRect(250, 105, 90, 60)
  45. brush.setStyle(Qt.HorPattern)
  46. qp.setBrush(brush)
  47. qp.drawRect(10, 195, 90, 60)
  48. brush.setStyle(Qt.VerPattern)
  49. qp.setBrush(brush)
  50. qp.drawRect(130, 195, 90, 60)
  51. brush.setStyle(Qt.BDiagPattern)
  52. qp.setBrush(brush)
  53. qp.drawRect(250, 195, 90, 60)
  54. if __name__ == '__main__':
  55. app = QApplication(sys.argv)
  56. ex = Example()
  57. sys.exit(app.exec_())

我们画了9个不同的矩形。

  1. brush = QBrush(Qt.SolidPattern)
  2. qp.setBrush(brush)
  3. qp.drawRect(10, 15, 90, 60)

创建了一个笔刷对象,添加笔刷样式,然后调用drawRect()方法画图。

程序展示:

噩梦可以使用PyQt5的QPainterPath创建贝塞尔曲线。绘画路径是由许多构建图形的对象,具体表现就是一些线的形状,比如矩形,椭圆,线和曲线。

  1. #!/usr/bin/python3
  2. # -*- coding: utf-8 -*-
  3. """
  4. ZetCode PyQt5 tutorial
  5. This program draws a Bézier curve with
  6. QPainterPath.
  7. Author: Jan Bodnar
  8. Website: zetcode.com
  9. Last edited: August 2017
  10. """
  11. from PyQt5.QtWidgets import QWidget, QApplication
  12. from PyQt5.QtGui import QPainter, QPainterPath
  13. from PyQt5.QtCore import Qt
  14. import sys
  15. class Example(QWidget):
  16. def __init__(self):
  17. super().__init__()
  18. self.initUI()
  19. def initUI(self):
  20. self.setGeometry(300, 300, 380, 250)
  21. self.setWindowTitle('Bézier curve')
  22. self.show()
  23. def paintEvent(self, e):
  24. qp = QPainter()
  25. qp.begin(self)
  26. qp.setRenderHint(QPainter.Antialiasing)
  27. self.drawBezierCurve(qp)
  28. qp.end()
  29. def drawBezierCurve(self, qp):
  30. path = QPainterPath()
  31. path.moveTo(30, 30)
  32. path.cubicTo(30, 30, 200, 350, 350, 30)
  33. qp.drawPath(path)
  34. if __name__ == '__main__':
  35. app = QApplication(sys.argv)
  36. ex = Example()
  37. sys.exit(app.exec_())

这个示例中,我们画出了一个贝塞尔曲线。

QPainterPath路径创建贝塞尔曲线。使用cubicTo()方法生成,分别需要三个点:起始点,控制点和终止点。

drawPath()绘制最后的图像。

程序展示: