Skip to content

Releases: AGulev/drawpixels

DrawPixels 2.0.1

25 Jun 07:12
Compare
Choose a tag to compare
  • Fix build on Linux

DrawPixels 2.0.0

06 May 17:10
9d6188e
Compare
Choose a tag to compare

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

10 Sep 20:11
Compare
Choose a tag to compare

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

30 Jul 06:55
81f34d6
Compare
Choose a tag to compare

Angle of the filled rect now can be lower 0

DrawPixels 1.2.1

25 Jul 20:24
Compare
Choose a tag to compare

fixed an issue #3 with 90 and 270 degree rotation of a rectangle

DrawPixels 1.2.0

18 Jul 11:41
9568749
Compare
Choose a tag to compare

Performance optimization and IDEA autocomplete

DrawPixels 1.1.0

17 Jun 22:18
Compare
Choose a tag to compare

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

13 Jun 06:22
afcb770
Compare
Choose a tag to compare
  • 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

13 Jun 06:19
Compare
Choose a tag to compare

Only base methods