Click here to Skip to main content
15,867,141 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
GeneralRe: Pop up window from a dialog based application Pin
Member 80516115-Feb-13 19:33
Member 80516115-Feb-13 19:33 
AnswerRe: Pop up window from a dialog based application Pin
Albert Holguin4-Feb-13 12:18
professionalAlbert Holguin4-Feb-13 12:18 
QuestionHow to Implement Drag & Drop feature for Imagesin MFC.? Pin
mbatra313-Feb-13 19:17
mbatra313-Feb-13 19:17 
AnswerRe: How to Implement Drag & Drop feature for Imagesin MFC.? Pin
Jochen Arndt3-Feb-13 21:46
professionalJochen Arndt3-Feb-13 21:46 
QuestionStuck in WaveInProc Pin
AmbiguousName2-Feb-13 7:21
AmbiguousName2-Feb-13 7:21 
AnswerRe: Stuck in WaveInProc Pin
CPallini2-Feb-13 10:38
mveCPallini2-Feb-13 10:38 
AnswerRe: Stuck in WaveInProc Pin
Richard MacCutchan2-Feb-13 21:26
mveRichard MacCutchan2-Feb-13 21:26 
QuestionBitmap creation from a buffer recived Pin
Sachin k Rajput 1-Feb-13 0:03
Sachin k Rajput 1-Feb-13 0:03 
Hello all!
I'm working on a program in which, I'm receiving the bytes of an image and after storing this creating a bitmap to display.
This is my Main code Please see this..

C++
static char buff[MAX_SIZE];
	int num;
			
//receiving the bytes from a client		 
          num=recv(Socket, buff, sizeof(buff), 0);
 
		 
    // progress the buffer
  
				//ifstream creation	
				std::ifstream is;
 
					is.open(buff, std::ios::binary);
					is.seekg(0, std::ios::end);
					num = is.tellg();
					is.seekg(0, std::ios::beg);
					 
 
					//reading buffer
					is.read(buff, num);
 
					tagBITMAPFILEHEADER bfh = *(tagBITMAPFILEHEADER*)buff;
					tagBITMAPINFOHEADER bih = *(tagBITMAPINFOHEADER*)(buff+sizeof(tagBITMAPFILEHEADER));
 
					RGBQUAD             rgb = *(RGBQUAD*)(buff+sizeof(tagBITMAPFILEHEADER)+sizeof(tagBITMAPINFOHEADER));
 

					BITMAPINFO bi;
bi.bmiColors[0] = rgb;
bi.bmiHeader = bih;
char* pPixels = (buff+bfh.bfOffBits);
 
char* ppvBits;
 

hbitmap = CreateDIBSection(NULL, &bi, DIB_RGB_COLORS, (void**) &ppvBits, NULL, 0);
SetDIBits(NULL, hbitmap, 0, bih.biHeight, pPixels, &bi, DIB_RGB_COLORS);
 
GetObject(hbitmap, sizeof(BITMAP), &cBitmap);

On checking the bytes received,,its ok to be there from both client and server side, But my code is unable to read these bytes to create a bitmap.

Thanks in advance for your help!
AnswerRe: Bitmap creation from a buffer recived Pin
Richard MacCutchan1-Feb-13 0:40
mveRichard MacCutchan1-Feb-13 0:40 
GeneralRe: Bitmap creation from a buffer recived Pin
Sachin k Rajput 1-Feb-13 0:56
Sachin k Rajput 1-Feb-13 0:56 
GeneralRe: Bitmap creation from a buffer recived Pin
Richard MacCutchan1-Feb-13 1:01
mveRichard MacCutchan1-Feb-13 1:01 
GeneralRe: Bitmap creation from a buffer recived Pin
Sachin k Rajput 1-Feb-13 1:18
Sachin k Rajput 1-Feb-13 1:18 
GeneralRe: Bitmap creation from a buffer recived Pin
Richard MacCutchan1-Feb-13 1:35
mveRichard MacCutchan1-Feb-13 1:35 
GeneralRe: Bitmap creation from a buffer recived Pin
Sachin k Rajput 1-Feb-13 1:46
Sachin k Rajput 1-Feb-13 1:46 
GeneralRe: Bitmap creation from a buffer recived Pin
Richard MacCutchan1-Feb-13 2:35
mveRichard MacCutchan1-Feb-13 2:35 
GeneralRe: Bitmap creation from a buffer recived Pin
Jibesh1-Feb-13 8:03
professionalJibesh1-Feb-13 8:03 
QuestionMFC and printing Pin
Argonia31-Jan-13 5:43
professionalArgonia31-Jan-13 5:43 
AnswerRe: MFC and printing Pin
SujayG1-Feb-13 16:21
SujayG1-Feb-13 16:21 
QuestionMFC Smart Device App with Visual C++ in Visual Std 2008 Pin
sefaonline31-Jan-13 3:09
sefaonline31-Jan-13 3:09 
AnswerRe: MFC Smart Device App with Visual C++ in Visual Std 2008 Pin
Richard MacCutchan31-Jan-13 3:45
mveRichard MacCutchan31-Jan-13 3:45 
Questionunable to register COM dll 64 bit Pin
john563231-Jan-13 2:12
john563231-Jan-13 2:12 
AnswerRe: unable to register COM dll 64 bit Pin
«_Superman_»1-Feb-13 16:59
professional«_Superman_»1-Feb-13 16:59 
QuestionPlay Media File Pin
john563230-Jan-13 19:38
john563230-Jan-13 19:38 
AnswerRe: Play Media File Pin
_Flaviu30-Jan-13 21:47
_Flaviu30-Jan-13 21:47 
GeneralRe: Play Media File Pin
john563231-Jan-13 1:07
john563231-Jan-13 1:07 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.