当前位置: 代码迷 >> VC/MFC >> CMEMDC的有关问题
  详细解决方案

CMEMDC的有关问题

热度:149   发布时间:2016-05-02 03:43:12.0
CMEMDC的问题
给位这个是网上下的CMEMDC的类,只有头文件,请问我要改变画笔的颜色,只在哪里添加?

#ifndef _MEMDC_H_
#define _MEMDC_H_

//////////////////////////////////////////////////

class CMemDC : public CDC {
private:
CBitmap m_bitmap; // Offscreen bitmap
CBitmap* m_oldBitmap; // bitmap originally found in CMemDC
CDC* m_pDC; // Saves CDC passed in constructor
CRect m_rect; // Rectangle of drawing area.
BOOL m_bMemDC; // TRUE if CDC really is a Memory DC.
public:

CMemDC(CDC* pDC, const CRect* pRect = NULL) : CDC()
{
ASSERT(pDC != NULL); 

// Some initialization
m_pDC = pDC;
m_oldBitmap = NULL;
m_bMemDC = !pDC->IsPrinting();

// Get the rectangle to draw
if (pRect == NULL) {
pDC->GetClipBox(&m_rect);
} else {
m_rect = *pRect;
}

if (m_bMemDC) {
// Create a Memory DC
CreateCompatibleDC(pDC);
pDC->LPtoDP(&m_rect);

m_bitmap.CreateCompatibleBitmap(pDC, m_rect.Width(), m_rect.Height());
m_oldBitmap = SelectObject(&m_bitmap);

SetMapMode(pDC->GetMapMode());
pDC->DPtoLP(&m_rect);
SetWindowOrg(m_rect.left, m_rect.top);
} else {
// Make a copy of the relevent parts of the current DC for printing
m_bPrinting = pDC->m_bPrinting;
m_hDC       = pDC->m_hDC;
m_hAttribDC = pDC->m_hAttribDC;
}

// Fill background 
FillSolidRect(m_rect, pDC->GetBkColor());
//MemDC.FillSolidRect(m_rect,RGB(255,255,255));
}


~CMemDC()
{
if (m_bMemDC) {
// Copy the offscreen bitmap onto the screen.
m_pDC->BitBlt(m_rect.left, m_rect.top, m_rect.Width(), m_rect.Height(),
this, m_rect.left, m_rect.top, SRCCOPY);

//Swap back the original bitmap.
SelectObject(m_oldBitmap);
} else {
// All we need to do is replace the DC with an illegal value,
// this keeps us from accidently deleting the handles associated with
// the CDC that was passed to the constructor.
m_hDC = m_hAttribDC = NULL;
}
}

// Allow usage as a pointer
CMemDC* operator->() 
{
return this;
}

// Allow usage as a pointer
operator CMemDC*() 
{
return this;
}
};

#endif
------解决思路----------------------
不懂也不知道,你可以试试,反正也无聊。
在画之前把画笔选进DC中(调用它的函数前),看看有没有效果。
其实论坛大神多的是,你想要什么功能。
大神都会告诉你很多很多方法,然后你自己去实现(也有直接代码的)。
知道原理后,在看别人的类也不一定有多好。
------解决思路----------------------
新版本mfc自带CMemDC类,而且包含源代码,代码也不多。
CPaintDC dc(this);
CRect rc;
GetClientRect(rc);
CMemDC mdc(dc, rc);
COLORREF c = mdc.SetTextColor(RGB(0,0,0)); 设置文字颜色
HFONT old = mdc.SelectFont(hFont); 设置字体
do paint;
mdc.SelectFont(old); //恢复原来的字体
mdc.SetTextColor(c); 回复原来的文字颜色

画笔是HPEN old = mdc.SelectPen(p);  do paint; mdc.SelectPen(old);
------解决思路----------------------
引用:
Quote: 引用:

新版本mfc自带CMemDC类,而且包含源代码,代码也不多。
CPaintDC dc(this);
CRect rc;
GetClientRect(rc);
CMemDC mdc(dc, rc);
COLORREF c = mdc.SetTextColor(RGB(0,0,0)); 设置文字颜色
HFONT old = mdc.SelectFont(hFont); 设置字体
do paint;
mdc.SelectFont(old); //恢复原来的字体
mdc.SetTextColor(c); 回复原来的文字颜色

画笔是HPEN old = mdc.SelectPen(p);  do paint; mdc.SelectPen(old);


我用的是VC6.0
这个是网上下的。
就是个头文件,不知道在哪里添加!
希望能过得到解答

不要用VC6了,使用VS2010及以上版本,推荐VS2013,工作中使用的也是VS
------解决思路----------------------
http://www.cnblogs.com/Clingingboy/archive/2011/08/10/2134176.html
这是WTL封装的缓存DC类,CMemoryDC,拷贝到你的代码里面,可以直接使用