📄 gifwrite.cpp
字号:
////////////////////////////////////////////////////////////
// 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 + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -