gifwrite.cpp

来自「jpeg压缩」· C++ 代码 · 共 27 行

CPP
27
字号
////////////////////////////////////////////////////////////
//	GIFFile - A C++ class to allow reading and writing of GIF Images
//
//	Note : GIF support has been removed as of 9/24/97. I am 
//	pursuing a license from Unisys to enable me to include GIF support 
//  in this package. Until then, no GIF. Sorry. -cdl
//
////////////////////////////////////////////////////////////


#include "stdafx.h"
#include "giffile.h"

/*******************************************************************************
*	here's the entry point. 
*	file ptr, screen width, height, background color, bits per pixel and
*	arrays of color values (0-255)
*******************************************************************************/
BOOL GIFFile::GIFWriteFileFrom256Color(unsigned char  * buf,
							CString name,
							int GWidth, 
							int GHeight,
							int BackGround,
							int Red[], int Green[], int Blue[])
{                       
	return FALSE;
}

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?