📄 ieintimage.cpp
字号:
// IEIntImage.cpp: implementation of the IEIntImage class.
//
//////////////////////////////////////////////////////////////////////
#include "stdafx.h"
#include "IEIntImage.h"
#include "IEDib.h"
#ifdef _DEBUG
#undef THIS_FILE
static char THIS_FILE[]=__FILE__;
#define new DEBUG_NEW
#endif
//////////////////////////////////////////////////////////////////////
// Construction/Destruction
//////////////////////////////////////////////////////////////////////
/*
BOOL IEIntImage::FromDib(IEDib* pDib)
{
int i, j;
int w = pDib->GetWidth();
int h = pDib->GetHeight();
MakeImage(w, h);
BYTE** src = pDib->GetPtr();
for( j = 0 ; j < h ; j++ )
for( i = 0 ; i < w ; i++ )
{
pixels[j][i] = src[j][i];
}
pDib->FreePtr(src);
return TRUE;
}
*/
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -