CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com
Results 1 to 2 of 2
  1. #1
    Join Date
    Jul 2002
    Location
    Israel
    Posts
    6

    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

  2. #2
    Join Date
    Jul 2002
    Location
    India
    Posts
    57

    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.
    nits

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  





Click Here to Expand Forum to Full Width

Featured