Originally posted by: tank171
How do I have the computer look at a certain pixel in a picture, then tell me what color it is? Then after that, how do I have it change that pixel's color? In c++, of course.
Originally posted by: programmer
The Win32 API has GetPixel (http://msdn2.microsoft.com/en-us/library/ms532282.aspx). The Win32 API is of course C, but you can add all the extra C++ you want on top of it.
An interesting tutorial that wraps similar stuff in C++ at
http://www.relisoft.com/win32/bitmap.html
