+ 2
Pictures in C++
Please can someone explain to me how I can put pictures into my C++ programm so they will be showed on the screen? I've just finished the course and I didn't find anything like that besides files.
3 Respostas
+ 6
Adding images, video, is not basic C++.
Try the tutorial in this openCV thread
- worked for me
https://www.sololearn.com/discuss/578649/?ref=app
+ 3
Well you'll probably want to research something like "graphics programming C++". It depends on what exactly you're looking for but if you have an environment setup on your computer for C++ I might look into SDL. It is "simple direct-media layer" and gives a fairly simple framework for getting a window and rendering inside it including other related IO functionality.
+ 1
OK, thank you guys