What is the fastest/easiest way to convert an array (of double) into a MFC-Bitmap to be displayed in a Picture Control?
Asked
Active
Viewed 1,610 times
1 Answers
0
I would start with a CMemDC
, where you can set every pixel by CDC::SetPixel()
, and then BitBlt it over to a real CDC.
If you want a real bitmap, look here: Creating HBITMAP from memory buffer