tags:

views:

401

answers:

4

I have been looking all over the web for the simplest solution for this, and currently I have come across nothing that seems simple enough for my needs.

I am looking for a way to manipulate a matrix of pixels manually in C++, platform independent.

Does anyone know of a library that is simple to use that will help me obtain this?

+5  A: 

Use SDL

nos
Thank you very much for pointing out this library, it looks extremely simple and quite effective!
bpescatore
+1  A: 

Use OpenCV

Indeera
+1  A: 

By virtue of it being platform independent, you're probably not going to find a library that does only this. There are libraries like SDL and directFB that will let you do this, but not without extra baggage. X11 may even be a better choice. It supports things you don't need, but it also allows you to easily render pixels directly to the screen (or window, as the case may be).

patros
A: 

Try Qt.

Intransigent Parsnip