Releases: justvanrossum/drawbot-skia
Releases · justvanrossum/drawbot-skia
v0.4.0
- Added
frameDuration(duration)
- Added
mp4
export support forsaveImage()
Version 0.3.1
- Added
path.removeOverlap()
- Added
path.union(other)
andpath.__or__(other)
- Added
path.intersection(other)
andpath.__and__(other)
- Added
path.difference(other)
andpath.__mod__(other)
- Added
path.xor(other)
andpath.__xor__(other)
Version 0.3.0
- 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
- 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
First tagged release, also on PyPI.
Use pip install drawbot-skia
to install.