hi i want make a personal image processing library.
i dont want use opengl or other library.
i want make it with c++ standard library and native code.
please help me and give me a mind about it and good references ,books
Image processing means transforming an image, not displaying it, so you won't need GL. Unless you meant a graphics library.
You should not avoid using libraries. You'll see that eventually. As for now, write a program that loads a bitmap, changes the color of one pixel, and then saves it. All you need to know about loading a bitmap can be found in wikipedia*, though if you try, you can find some tutorials and examples.
When you're done with that, try to add support for more formats and more functions.