Hello,

In my project need to visualize data on a DialogForm (MFC project).
The data is 2-dimensional array of 16-bit values. I want image to be displayed in grayscale.

For displaying picture I use CStatic control variable m_Picture2, that is linked to Picture Control object on the Dialog Form.
From my experiecies results, that pixel values must be 4 bytes, otherwise nothing is displayed.
The problem is how to map my 16-bit values in order to have image in grayscale.
Here is my code that doesn't work properly. In order to facilitate my excersises I form pixel values using bitset containers. Original CString cs with undersores (to facilitate value perception) is then cleaned from undersores in CleanString function and converted to string object, that is finally passed to bitset constructor. Then the same value is used to initialize bitmap array. Finally the bitmap array is passed to CreateBitmap function and finally HBITMAP object is used to attach bitmap to CStatic variable m_Picture2, that is linked to Picture_Control.
I've never succeeded to obtain grayscale image.

Thank you in advance.

Pavel.

Code:
	unsigned long bitmap_data[512*476];
	CString cs = _T("1111_1111__0001_1111__0001_1111__0001_1111");
	CString cs1 = CleanString(cs);
	CT2CA pszConvertedAnsiString (cs1);
	std::string str(pszConvertedAnsiString);
	bitset<32> offset (str);
	
	for (int i = 0; i < sizeof(bitmap_data)/4; i++)
	{
		unsigned long aa = offset.to_ulong();
		bitmap_data[i] = aa;
	}
	HBITMAP hb = CreateBitmap(512, 476, 1, 32, bitmap_data);

	m_Picture2.SetBitmap(hb);
	m_Picture2.Invalidate();