⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 ieintimage.cpp

📁 很珍贵得视频编辑器原码及CODEC。需要安装下列CODEC.可播放多种格式的视频
💻 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 + -