Releases: AGulev/drawpixels
Releases · AGulev/drawpixels
DrawPixels 2.0.1
DrawPixels 2.0.0
NEW:
- New API methods:
drawpixels.gradient_line()
,drawpixels.arc()
,drawpixels.filled_arc()
,drawpixels.gradient_arc()
,drawpixels.start_fill()
,drawpixels.end_fill()
,drawpixels.fill_area()
. - Antialiasing option for the following functions:
drawpixels.filled_circle()
,drawpixels.line()
,drawpixels.circle()
. - Line width option for the following functions:
drawpixels.circle()
,drawpixels.line()
. premultiply_alpha
option.
Thanks @sergeysinyavsky !
DrawPixels 1.3.0
NEW: drawpixels.bezier(buffer_info, x0, y0, xc, yc, x1, y1, red, green, blue, alpha) draw a bezier line between two points and one control point
Thanks @koorva !
DrawPixels 1.2.2
Angle of the filled rect now can be lower 0
DrawPixels 1.2.1
fixed an issue #3 with 90 and 270 degree rotation of a rectangle
DrawPixels 1.2.0
Performance optimization and IDEA autocomplete
DrawPixels 1.1.0
NEW: drawpixels.pixel(buffer, x, y, r, g, b, a) to draw a pixel to the buffer
NEW: drawpixels.color(buffer, x, y) to read color from buffer
DrawPixels 1.0.0
- Added new method draw pixels.line().
- Code refactoring.
- Fixed bug with drawpixels.circle() and drawpixels.filled_circle() - those functions now use diameter according docs.
- Checking for a buffer edges.
- Allowed to use negative coordinates.
Thanks @britzl!
DrawPixels 0.6.0
Only base methods