组合模式(Composition Mode)

组合允许你绘制一个形状然后与已有的像素点集合混合。画布提供了多种组合模式,使用globalCompositeOperation(mode)来设置。

  • “source-over”

  • “source-in”

  • “source-out”

  • “source-atop”

  1. onPaint: {
  2. var ctx = getContext("2d")
  3. ctx.globalCompositeOperation = "xor"
  4. ctx.fillStyle = "#33a9ff"
  5. for(var i=0; i<40; i++) {
  6. ctx.beginPath()
  7. ctx.arc(Math.random()*400, Math.random()*200, 20, 0, 2*Math.PI)
  8. ctx.closePath()
  9. ctx.fill()
  10. }
  11. }

下面这个例子遍历了列表中的组合模式,使用对应的组合模式生成了一个矩形与圆形的组合。

  1. property var operation : [
  2. 'source-over', 'source-in', 'source-over',
  3. 'source-atop', 'destination-over', 'destination-in',
  4. 'destination-out', 'destination-atop', 'lighter',
  5. 'copy', 'xor', 'qt-clear', 'qt-destination',
  6. 'qt-multiply', 'qt-screen', 'qt-overlay', 'qt-darken',
  7. 'qt-lighten', 'qt-color-dodge', 'qt-color-burn',
  8. 'qt-hard-light', 'qt-soft-light', 'qt-difference',
  9. 'qt-exclusion'
  10. ]
  11. onPaint: {
  12. var ctx = getContext('2d')
  13. for(var i=0; i<operation.length; i++) {
  14. var dx = Math.floor(i%6)*100
  15. var dy = Math.floor(i/6)*100
  16. ctx.save()
  17. ctx.fillStyle = '#33a9ff'
  18. ctx.fillRect(10+dx,10+dy,60,60)
  19. // TODO: does not work yet
  20. ctx.globalCompositeOperation = root.operation[i]
  21. ctx.fillStyle = '#ff33a9'
  22. ctx.globalAlpha = 0.75
  23. ctx.beginPath()
  24. ctx.arc(60+dx, 60+dy, 30, 0, 2*Math.PI)
  25. ctx.closePath()
  26. ctx.fill()
  27. ctx.restore()
  28. }
  29. }