资源简介

BMP图像信息隐藏的简单VC实现。通过更改最低比特位(LSB)实现。

资源截图

代码片段和文件信息

// bmp.cpp : Defines the class behaviors for the application.
//

#include “stdafx.h“
#include “bmp.h“
#include “bmpDlg.h“

#ifdef _DEBUG
#define new DEBUG_NEW
#undef THIS_FILE
static char THIS_FILE[] = __FILE__;
#endif

/////////////////////////////////////////////////////////////////////////////
// CBmpApp

BEGIN_MESSAGE_MAP(CBmpApp CWinApp)
//{{AFX_MSG_MAP(CBmpApp)
// NOTE - the ClassWizard will add and remove mapping macros here.
//    DO NOT EDIT what you see in these blocks of generated code!
//}}AFX_MSG
ON_COMMAND(ID_HELP CWinApp::onhelp)
END_MESSAGE_MAP()

/////////////////////////////////////////////////////////////////////////////
// CBmpApp construction

CBmpApp::CBmpApp()
{
// TODO: add construction code here
// Place all significant initialization in InitInstance
}

/////////////////////////////////////////////////////////////////////////////
// The one and only CBmpApp object

CBmpApp theApp;

/////////////////////////////////////////////////////////////////////////////
// CBmpApp initialization

BOOL CBmpApp::InitInstance()
{
AfxEnableControlContainer();

// Standard initialization
// If you are not using these features and wish to reduce the size
//  of your final executable you should remove from the following
//  the specific initialization routines you do not need.

#ifdef _AFXDLL
Enable3dControls(); // Call this when using MFC in a shared DLL
#else
Enable3dControlsStatic(); // Call this when linking to MFC statically
#endif

CBmpDlg dlg;
m_pMainWnd = &dlg;
int nResponse = dlg.DoModal();
if (nResponse == IDOK)
{
// TODO: Place code here to handle when the dialog is
//  dismissed with OK
}
else if (nResponse == IDCANCEL)
{
// TODO: Place code here to handle when the dialog is
//  dismissed with Cancel
}

// Since the dialog has been closed return FALSE so that we exit the
//  application rather than start the application‘s message pump.
return FALSE;
}

 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----

     文件       1698  2008-09-16 19:08  BMP\bmp.clw

     文件       3525  2008-09-12 11:33  BMP\ReadMe.txt

     文件       1291  2008-09-12 11:33  BMP\bmp.h

     文件       2021  2008-09-12 11:33  BMP\bmp.cpp

     文件       1054  2008-09-12 11:33  BMP\StdAfx.h

     文件        205  2008-09-12 11:33  BMP\StdAfx.cpp

     文件      74752  2008-09-16 19:08  BMP\bmp.ncb

     文件       2464  2008-09-16 19:08  BMP\bmp.plg

     文件       1036  2008-09-12 11:36  BMP\DIB.h

     文件       5856  2008-09-12 11:38  BMP\DIB.cpp

     文件        514  2008-09-12 11:38  BMP\bmp.dsw

     文件      54784  2008-09-16 19:08  BMP\bmp.opt

     文件       6444  2008-09-15 15:15  BMP\bmp.rc

     文件      36680  2008-09-15 15:15  BMP\bmp.aps

     文件        395  2008-09-12 11:33  BMP\res\bmp.rc2

     文件       1078  2008-09-12 11:33  BMP\res\bmp.ico

     文件       1232  2008-09-15 14:41  BMP\HelpDlg.h

     文件        994  2008-09-15 14:41  BMP\HelpDlg.cpp

     文件       4398  2008-09-15 14:46  BMP\bmp.dsp

     文件       1510  2008-09-15 14:53  BMP\bmpDlg.h

     文件       6462  2008-09-15 15:08  BMP\bmpDlg.cpp

     文件       1232  2008-09-15 15:08  BMP\Resource.h

     目录          0  2008-09-15 14:13  BMP\res

     目录          0  2008-09-15 14:13  BMP

----------- ---------  ---------- -----  ----

               209625                    24


评论

共有 条评论