资源简介
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
- 上一篇:模仿智联职位选择地区选择Js插件
- 下一篇:Labview跑马灯87105
相关资源
- ImageList加载BMP在ListCtrl中显示的Demo
- 自己分装的一个winhttp类
- devcon.exe(32位,64位)驱动安装卸载工
- 小型公司工资管理系统设计
- VC中利用多线程技术实现线程之间的通
- 基于MVC的网上书店
- 软件的层架构设计详解
- SpringSpringMVCmybatis电商项目实战教程
- VC编程实现使用WinInet通过HTTP协议读取
- rgb565_to_bmp
- 整车控制器和电机控制器通讯协议
- maven+spring4+springmvc+redis实现分页
- Bmp2Tif example
- VC2015及2017下可以使用的CButtonST
- VMware vsphere6.5_keygen,VCSA6.5_keygen (E
- F16运动仿真模拟
- bmp图片转16进制
- sc_client_control_interface_tcp_vcpp
- OpenGl 飞机在蓝天飞行 纹理贴图 地形
- marionettejs实现todoMVC
- 简单的信息隐藏和DES加密
- bmp转jpeg源码
- 偷窥者远程控制软件的VC源代码
- 通过文件头识别文件类型
- 信息隐藏加密软件
- ISE中生成.VCD文件的方法
- 基于差值扩展的音频无损信息隐藏算
- raw转bmp文件raw2bmp
- mvc学习mvc学习mvc学习
- DevCon.exe 最新提取版
评论
共有 条评论