Click here to Skip to main content
15,888,401 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
AnswerRe: Were is a source of "sal.h" header file? Pin
Richard MacCutchan25-Feb-13 5:44
mveRichard MacCutchan25-Feb-13 5:44 
GeneralRe: Were is a source of "sal.h" header file? Pin
Vaclav_25-Feb-13 5:52
Vaclav_25-Feb-13 5:52 
GeneralRe: Were is a source of "sal.h" header file? Pin
SoMad25-Feb-13 6:39
professionalSoMad25-Feb-13 6:39 
GeneralRe: Were is a source of "sal.h" header file? Pin
Vaclav_25-Feb-13 9:21
Vaclav_25-Feb-13 9:21 
QuestionGoogle contacts from Visual Studio 2008 C++ desktop application Pin
Member 86892625-Feb-13 0:54
Member 86892625-Feb-13 0:54 
QuestionHow to resize a property sheet according to the DPI settings in MFC. Pin
mbatra3124-Feb-13 22:35
mbatra3124-Feb-13 22:35 
AnswerRe: How to resize a property sheet according to the DPI settings in MFC. Pin
Richard MacCutchan25-Feb-13 0:22
mveRichard MacCutchan25-Feb-13 0:22 
QuestionDisplaying Image from stream Pin
Sachin k Rajput 24-Feb-13 17:55
Sachin k Rajput 24-Feb-13 17:55 
I'm trying to display an image from a stream data.
But there is no image when getting image::from stream.
It's my source code:
C++
IStream* pstream = NULL;
	if(SUCCEEDED(CreateStreamOnHGlobal(NULL, TRUE, &pstream)))
	{
		
		ULONG lreal = 0;

		pstream->Write(chIncomingDataBuffer, iEnd, &lreal );
		if(pstream!= NULL)
		{
		
		MessageBox(hWnd,
						" Stream is OK",
						"Connection strt",
						MB_ICONINFORMATION|MB_OK);
		
		}
		Image* image =Image::FromStream(pstream);
		if(image)
		{
		
		RECT rect;

			::GetWindowRect(hWnd, &rect);
			Graphics graphics(hWnd);
			graphics.DrawImage(image, 0, 0, rect.right-rect.left, rect.bottom-rect.top);
	
		}
		else
		{
		
		MessageBox(hWnd,
						"No image is written",
						"Connection strt",
						MB_ICONINFORMATION|MB_OK);
		
		
		}
		if(image)
			delete image;
		image = NULL;
		if(pstream)
			pstream->Release();
		pstream = NULL;
	
	}



There is no image from data. Can anyone help me in this?
Thanks!
AnswerRe: Displaying Image from stream Pin
SoMad24-Feb-13 18:58
professionalSoMad24-Feb-13 18:58 
GeneralRe: Displaying Image from stream Pin
Sachin k Rajput 24-Feb-13 19:05
Sachin k Rajput 24-Feb-13 19:05 
GeneralRe: Displaying Image from stream Pin
SoMad24-Feb-13 19:10
professionalSoMad24-Feb-13 19:10 
GeneralRe: Displaying Image from stream Pin
Sachin k Rajput 24-Feb-13 19:53
Sachin k Rajput 24-Feb-13 19:53 
GeneralRe: Displaying Image from stream Pin
SoMad24-Feb-13 20:18
professionalSoMad24-Feb-13 20:18 
GeneralRe: Displaying Image from stream Pin
Sachin k Rajput 24-Feb-13 20:28
Sachin k Rajput 24-Feb-13 20:28 
GeneralRe: Displaying Image from stream Pin
SoMad24-Feb-13 21:31
professionalSoMad24-Feb-13 21:31 
GeneralRe: Displaying Image from stream Pin
Sachin k Rajput 24-Feb-13 21:53
Sachin k Rajput 24-Feb-13 21:53 
GeneralRe: Displaying Image from stream Pin
SoMad24-Feb-13 22:09
professionalSoMad24-Feb-13 22:09 
GeneralRe: Displaying Image from stream Pin
Richard MacCutchan25-Feb-13 0:20
mveRichard MacCutchan25-Feb-13 0:20 
GeneralRe: Displaying Image from stream Pin
SoMad25-Feb-13 0:48
professionalSoMad25-Feb-13 0:48 
GeneralRe: Displaying Image from stream Pin
Richard MacCutchan25-Feb-13 0:55
mveRichard MacCutchan25-Feb-13 0:55 
AnswerRe: Displaying Image from stream - [REPOST] Pin
Richard MacCutchan25-Feb-13 0:51
mveRichard MacCutchan25-Feb-13 0:51 
GeneralRe: Displaying Image from stream - [REPOST] Pin
Sachin k Rajput 25-Feb-13 1:49
Sachin k Rajput 25-Feb-13 1:49 
GeneralRe: Displaying Image from stream - [REPOST] Pin
Richard MacCutchan25-Feb-13 3:04
mveRichard MacCutchan25-Feb-13 3:04 
QuestionConnect directshow filters Pin
11moshiko1124-Feb-13 4:41
11moshiko1124-Feb-13 4:41 
QuestionBuild for 64bit Pin
john563221-Feb-13 23:13
john563221-Feb-13 23:13 

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.