readme.txt

来自「rle静态图片压缩DELPHI代码,可以对DEPHI程序员了解有很大帮助」· 文本 代码 · 共 13 行

TXT
13
字号


. add a static control (say IDC_STATIC_BITMAP) in the dialog for the bitmap control 

. add an #include "DVDBitmapControl.h" in the header file of your dialog

. add member variable (say m_bmp) in your dialog class;

. in OnInitDialog(), add this line:  m_bmp.SubclassDlgItem( IDC_STATIC_BITMAP, this);

. call m_bmp.LoadBitmapFile(CString)  to load bitmap into control

. call m_bmp.SaveBitmapFile(CString)  to save bitmap into 8-bit RLE bitmap

⌨️ 快捷键说明

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