wzdbitmap.h
来自「图像处理软件,功能比较基础」· C头文件 代码 · 共 27 行
H
27 行
#ifndef WZDBITMAP_H
#define WZDBITMAP_H
#if _MSC_VER > 1000
#pragma once
#endif // _MSC_VER > 1000
class CWzdBitmap : public CBitmap
{
public :
DECLARE_DYNAMIC( CWzdBitmap )
// Constructors
CWzdBitmap();
void SaveBitmapEx( CString sFile );
HANDLE CreateDIB( int *pbmData = NULL );
// Implementation
public :
virtual ~CWzdBitmap();
// Attributes
int m_nWidth ;
int m_nHeight;
// Operations
private:
CPalette *m_pPalette;
};
#endif
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?