资源简介
jpeg格式图片的读取和显示的简单易懂的小程序,对于那些初学者有很大的帮助
代码片段和文件信息
// ShowJPG.cpp : Defines the class behaviors for the application.
//
#include “stdafx.h“
#include “ShowJPG.h“
#include “ShowJPGDlg.h“
#ifdef _DEBUG
#define new DEBUG_NEW
#undef THIS_FILE
static char THIS_FILE[] = __FILE__;
#endif
/////////////////////////////////////////////////////////////////////////////
// CShowJPGApp
BEGIN_MESSAGE_MAP(CShowJPGApp CWinApp)
//{{AFX_MSG_MAP(CShowJPGApp)
// 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()
/////////////////////////////////////////////////////////////////////////////
// CShowJPGApp construction
CShowJPGApp::CShowJPGApp()
{
// TODO: add construction code here
// Place all significant initialization in InitInstance
}
/////////////////////////////////////////////////////////////////////////////
// The one and only CShowJPGApp object
CShowJPGApp theApp;
/////////////////////////////////////////////////////////////////////////////
// CShowJPGApp initialization
BOOL CShowJPGApp::InitInstance()
{
CoInitialize(NULL);
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
CShowJPGDlg 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.
CoUninitialize();
return FALSE;
}
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
文件 694 2006-04-05 23:57 ShowJPG\ShowJPG.clw
文件 3597 2006-04-05 15:36 ShowJPG\ReadMe.txt
文件 1335 2006-04-05 15:36 ShowJPG\ShowJPG.h
文件 1054 2006-04-05 15:36 ShowJPG\StdAfx.h
文件 209 2006-04-05 15:36 ShowJPG\StdAfx.cpp
文件 4177 2006-04-05 15:36 ShowJPG\ShowJPG.dsp
文件 539 2006-04-05 15:36 ShowJPG\ShowJPG.dsw
文件 58368 2006-04-05 23:57 ShowJPG\ShowJPG.ncb
文件 547 2006-04-05 15:37 ShowJPG\Resource.h
文件 2121 2006-04-05 15:52 ShowJPG\ShowJPG.cpp
文件 1475 2006-04-05 16:25 ShowJPG\ShowJPGDlg.h
文件 399 2006-04-05 15:36 ShowJPG\res\ShowJPG.rc2
文件 1078 2006-04-05 15:36 ShowJPG\res\ShowJPG.ico
目录 0 2006-04-05 21:32 ShowJPG\res
文件 34632 2006-04-05 21:59 ShowJPG\ShowJPG.aps
文件 4415 2006-04-05 21:59 ShowJPG\ShowJPG.rc
文件 5397 2006-04-05 22:06 ShowJPG\ShowJPGDlg.cpp
文件 53760 2006-04-05 23:57 ShowJPG\ShowJPG.opt
目录 0 2006-04-05 21:32 ShowJPG
----------- --------- ---------- ----- ----
174015 20
- 上一篇:Qt界面响应键盘事件
- 下一篇:最新版本linux libc库实现源码
相关资源
- msp430f149 12864显示温度
- VC读取JPG的EXIF信息的一个类
- 基于51单片机的多路温湿度实时监测的
-
读取xm
l,生存生成树形节点 - 一种基于DSP控制的液晶显示屏的设计
- Axure RP 8自定义复选下拉框,选中项文
- qcustomplot鼠标点击后在坐标轴显示值
- VRML液晶显示器
- 密码锁,数码管显示 protues 仿真
- 读取图文件的程序
- JPEG文件隐形信息检测算法
- 年会抽奖,滚动式抽奖,显示每次抽
- Windows CE环境下GPS定位信息的读取和接
- STC单片机读取AT24C02程序
- msp430g2553串行控制12864显示正弦波。
- 基于VHDL的矩阵键盘及显示电路设计
- LED8N收银客户显示屏幕开发
- JPEG图片文件编解码详解.doc
- LCD1602显示代码,verilog HDL编写。
- 电子时钟的设计显示时,分,秒
- OLED0.91模组12832 IIC全套显示函数字符显
- ascii读取及雷达数据的转换
- opencv图片读取的路径问题
- Proteus单片机仿真 万年历支持温度农历
- unity 读取手机相册
- gps 读取卫星星历文件计算卫星位置
- 百度地图显示多点连线+数字标注
- MT4上显示北京时间指标
- gridcontrol隔行变色、焦点行颜色、改变
- 哈夫曼树应用 从终端读入字符集大小
评论
共有 条评论