Click to See Complete Forum and Search --> : technology question


nirdo1
July 30th, 2002, 02:08 AM
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

nithy
July 31st, 2002, 01:36 AM
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.