1

I'am looking for fast library too make some 2d drawings. I need only to draw polygons, change transparency of them. I don't want to display result in any window, saving to file will be enoght (faster = better) - I want to learn my algorithm how to draw shapes so i need only methods like "drawPolygon" and "getPixel" to compare results.

Sparkzi
  • 83
  • 1
  • 6

2 Answers2

1

OpenCV would also be a valid choice for doing something basic like this.

SinisterMJ
  • 3,425
  • 2
  • 33
  • 53
  • It doesn't properly support transparency: it has RGBA images, but doesn't support alpha blending. – ansgri Apr 01 '16 at 16:27
0

The GD library is ideal for drawing shapes onto bitmaps.

Alnitak
  • 334,560
  • 70
  • 407
  • 495