Hi
I want to draw a filled box in console and set colour for every single pixel.
Is it possible to achive this with ncurses?
If not - is there any other library that will do the trick?
|
|
|
|
|
|
|
No, Curses is only for drawing characters, not pixels. If you want another libary, it depends the kind of language you want (C ? XLib, GTK... Java ? AWT, Swing) or if you only want a static image (libpng, svg, postscript...) |
||
|
|
|
|
Seeing as how we're talking about pseudo-graphics in console, setting color for individual pixels is impossible with ncurses or any other library :-) so I'm going assume you meant setting colors for each character. That is possible with ncurses as long as your terminal supports colors. You need to invoke
Details are here |
||||
|