Click here to Skip to main content
15,886,199 members

how to get resize bitmap image using stretchblt

Member 7909353 asked:

Open original thread
In my mfc application I have dialog box and a picture control(245,26,204,184) its id is IDC_pic.
My code is

SecondDlg.cpp
C++
void CSecondDlg::DoDataExchange(CDataExchange* pDX)
 {
	CDialog::DoDataExchange(pDX);
	DDX_Control(pDX, IDC_pic, m_nHeight); //m_nHeight is CStatic object
}
void SecondDlg::OnBnClickedButton1()
{
	
	if(m_flag && m_hBmp)
	{
		capEditCopy(hMyWindow);
		OpenClipboard();
		m_hBmp = (HBITMAP)::GetClipboardData(CF_BITMAP);
		m_hBmp = (HBITMAP)::GetClipboardData(CF_BITMAP);
		m_nHeight.SetBitmap(m_hBmp); //here working fine
		BITMAP bm;
		GetObject(m_hBmp,sizeof(BITMAP),&bm);
		HDC TempHDC,TempHDC1;
		TempHDC1 = ::CreateCompatibleDC(NULL);
		SelectObject(TempHDC1,m_hBmp);
		CRect c1(245,26,24,14),c2(245,26,204,184);
		int rest=::StretchBlt(TempHDC1,550,157,50,50, TempHDC1, c2.left,c2.top,bm.bmWidth,bm.bmHeight, SRCCOPY ); 
		hOldBitmap2=CreateCompatibleBitmap(TempHDC1,204,184);
		GetObject(hOldBitmap2,sizeof(BITMAP),&bm);
		m_nHeight.SetBitmap(hOldBitmap2);
		DeleteDC(TempHDC);
 		CloseClipboard();		
	}
}

I have picture control(id is IDC_pic) on SecondDlg.
Now IDC_pic got black screen.
Tags: VC++, Visual Studio (Visual Studio 2008), MFC

Plain Text
ASM
ASP
ASP.NET
BASIC
BAT
C#
C++
COBOL
CoffeeScript
CSS
Dart
dbase
F#
FORTRAN
HTML
Java
Javascript
Kotlin
Lua
MIDL
MSIL
ObjectiveC
Pascal
PERL
PHP
PowerShell
Python
Razor
Ruby
Scala
Shell
SLN
SQL
Swift
T4
Terminal
TypeScript
VB
VBScript
XML
YAML

Preview



When answering a question please:
  1. Read the question carefully.
  2. Understand that English isn't everyone's first language so be lenient of bad spelling and grammar.
  3. If a question is poorly phrased then either ask for clarification, ignore it, or edit the question and fix the problem. Insults are not welcome.
  4. Don't tell someone to read the manual. Chances are they have and don't get it. Provide an answer or move on to the next question.
Let's work to help developers, not make them feel stupid.
Please note that all posts will be submitted under the http://www.codeproject.com/info/cpol10.aspx.



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900