Skip to content

Releases: justvanrossum/drawbot-skia

v0.4.0

01 Oct 06:04
Compare
Choose a tag to compare
  • Added frameDuration(duration)
  • Added mp4 export support for saveImage()

Version 0.3.1

27 Sep 18:01
Compare
Choose a tag to compare
  • Added path.removeOverlap()
  • Added path.union(other) and path.__or__(other)
  • Added path.intersection(other) and path.__and__(other)
  • Added path.difference(other) and path.__mod__(other)
  • Added path.xor(other) and path.__xor__(other)

Version 0.3.0

27 Sep 18:01
Compare
Choose a tag to compare
  • Added clipPath(path)
  • Added path.pointInside(point)
  • Added path.bounds()
  • Added path.controlPointBounds()
  • Added path.reverse()
  • Added path.appendPath(other)
  • Added path.copy()
  • Added path.translate(x, y)
  • Added path.scale(x, y=None, center=(0, 0))
  • Added path.rotate(angle, center=(0, 0))
  • Added path.skew(x, y=0, center=(0, 0))
  • Added path.transform(transform, center=(0, 0))
  • Added path.arc(center, radius, startAngle, endAngle, clockwise)
  • Added path.arcTo(point1, point2, radius)
  • Added path.drawToPen(pen)
  • Added path.drawToPointPen(pen)
  • Added path.text(txt, ...)
  • Fixed bug when font() was not set

Version 0.2.0

26 Sep 08:41
Compare
Choose a tag to compare
  • Added image(imagePath, position, alpha=1.0)
  • Added language(language)
  • Fixed signature of transform(matrix, center=(0, 0))
  • Added blendMode(blendMode)
  • Added lineDash(firstValue, *values)

Version 0.1.1

22 Sep 17:24
Compare
Choose a tag to compare

First tagged release, also on PyPI.

Use pip install drawbot-skia to install.