Are there some libraries with C API to draw pictures? Just like the library matplotlib in python. I will use it to draw lines, dots, circles and I hope it has detailed documentation and opensource. My platform is gentoo.
|
feedback
|
|
The most comprehensive one is probably ImageMagick. They suggest using the MagickWand API. Other options are cairo, with a image buffer output device, or maybe libgd. | |||
|
feedback
|
|
There's no such functionality in the C standard library. | |||||||||
feedback
|
|
Depends on your needs. Maybe you can use These are game engines (full list of them here - check with C bindings), but you can also use them for drawing plots and etc too. Also you can check - maybe you can include Python bindings in C, and after that - run Python code (matplotLib) from C ? | |||
|
feedback
|
|
One popular choice is SDL. I'm not familiar with matplotlob, it's possible that SDL is (quite a bit) more low-level than you expect. | |||
|
feedback
|
|
If you running linux and compiling with gcc, the most obvious choice would be plotutils. It has both a C and a C++ API. | |||
|
feedback
|
linux, compiler:gcc– arnkore Dec 7 '11 at 9:58