I was wondering if there was any way to display graphics in the console window. Like for example, let's say I have a bmp and I wanted to load it and show it in the console window. Is this possible? I'm on Windows and I'm using CodeBlocks v10.05
No, the extent of the standard C or C++ library doesn't fulfull this want as far as I know. You'll need nCurses, the only updated console manipulation library that I know of.
No, the extent of the standard C or C++ library doesn't fulfull this want as far as I know. You'll need nCurses, the only updated console manipulation library that I know of.
Ok thank you. I'll take a look into that =)
You're trying to do things the console was not designed to do. It will be more difficult than just doing things normally.
Well, that's kind of why I want to do this anyways. I like finding simple solutions to complicated tasks. I guess it's sort of silly but it keeps me entertained ^^