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.

link|improve this question

What OS? What compiler? – Alex Dec 7 '11 at 9:56
os: linux, compiler: gcc – arnkore Dec 7 '11 at 9:58
feedback

5 Answers

up vote 1 down vote accepted

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.

link|improve this answer
Cairo seems satisfy my require. – arnkore Dec 7 '11 at 10:15
feedback

There's no such functionality in the C standard library.

link|improve this answer
My question doesn't limit to standard library. – arnkore Dec 7 '11 at 9:49
1  
You said, and I quote, "Does C have some libraries to draw pictures?" C does not. Here's why. Per the C standard, the C language only includes the standard library and per that same standard the standard library doesn't have anything for drawing pictures. All other libraries are out of the scope of the language, although they can be implemented in it or for it. In other words, they may exist, but, unlike things like printf(), they aren't guaranteed to be available for every OS and every compiler. – Alex Dec 7 '11 at 9:54
And besides after 40 years, I would think they would have created a properitery library for this task. So a question should rather be, what API can I use with C for graphics? – skynorth Dec 7 '11 at 13:16
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 ?

link|improve this answer
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.

link|improve this answer
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.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.