Graphic programming

alright im not all that good at programming but i want to learn how to do graphical programming to add images and create GUI for some of my programs.


sadly i have no idea where to start off. is it hard and where can i learn it.


thx for the help
I'd recommend SFML - http://www.sfml-dev.org/

I learned from their documentation and this guy - https://www.youtube.com/playlist?list=PLHJE4y54mpC5j_x90UkuoMZOdmmL9-_rg
Last edited on
I would probably go with SFML for a starter, or SDL if you want some more advanced functions. There are plenty of c++ graphical libraries out there. A GUI may be more difficult. For a GUI you could use SFGUI (an sfml based GUI system), or use WXWidgets and the windows api instead if you are on windows.
Last edited on
If you just want a GUI, or the GUI is the main part you are focussed on, my recommendation is Qt. It's very powerful, and much nicer to program than WxWidgets or the WinAPI.

As for difficulty... well, in some ways graphics applications can be easier than console applications, once you've learned the framework. You should be fine; just spend time fiddling with things, and look at example programs and the like to see how other people do things.
Topic archived. No new replies allowed.