-
technology question
Hi,
I need to create an image, on a white background, according to textual data. my question is which technology to use (I prefer C++ related technology).
i am familiar with c++, but i do not know nothing about graphics, except using MFC which does not look like a good option (but if it is please tell me how...)
Thanks,
Nir
-
Try this!
You can create a bitmap by CBitmap::CreateBitmap() function.
You can assign bit values to it by CBitmap::SetBitmapBits() function.
To display this possibly you can use a CDC::SelectObject() function.
Hope this solves your problem.