PicSizeDlg.cpp
上传用户:aokegd
上传日期:2009-12-14
资源大小:1276k
文件大小:5k
源码类别:

书籍源码

开发平台:

Visual C++

  1. // PicSizeDlg.cpp : implementation file
  2. //
  3. #include "stdafx.h"
  4. #include "PicSize.h"
  5. #include "PicSizeDlg.h"
  6. #include "afxdlgs.h"
  7. #ifdef _DEBUG
  8. #define new DEBUG_NEW
  9. #undef THIS_FILE
  10. static char THIS_FILE[] = __FILE__;
  11. #endif
  12. /////////////////////////////////////////////////////////////////////////////
  13. // CAboutDlg dialog used for App About
  14. class CAboutDlg : public CDialog
  15. {
  16. public:
  17. CAboutDlg();
  18. // Dialog Data
  19. //{{AFX_DATA(CAboutDlg)
  20. enum { IDD = IDD_ABOUTBOX };
  21. //}}AFX_DATA
  22. // ClassWizard generated virtual function overrides
  23. //{{AFX_VIRTUAL(CAboutDlg)
  24. protected:
  25. virtual void DoDataExchange(CDataExchange* pDX);    // DDX/DDV support
  26. //}}AFX_VIRTUAL
  27. // Implementation
  28. protected:
  29. //{{AFX_MSG(CAboutDlg)
  30. //}}AFX_MSG
  31. DECLARE_MESSAGE_MAP()
  32. };
  33. CAboutDlg::CAboutDlg() : CDialog(CAboutDlg::IDD)
  34. {
  35. //{{AFX_DATA_INIT(CAboutDlg)
  36. //}}AFX_DATA_INIT
  37. }
  38. void CAboutDlg::DoDataExchange(CDataExchange* pDX)
  39. {
  40. CDialog::DoDataExchange(pDX);
  41. //{{AFX_DATA_MAP(CAboutDlg)
  42. //}}AFX_DATA_MAP
  43. }
  44. BEGIN_MESSAGE_MAP(CAboutDlg, CDialog)
  45. //{{AFX_MSG_MAP(CAboutDlg)
  46. // No message handlers
  47. //}}AFX_MSG_MAP
  48. END_MESSAGE_MAP()
  49. /////////////////////////////////////////////////////////////////////////////
  50. // CPicSizeDlg dialog
  51. CPicSizeDlg::CPicSizeDlg(CWnd* pParent /*=NULL*/)
  52. : CDialog(CPicSizeDlg::IDD, pParent)
  53. {
  54. //{{AFX_DATA_INIT(CPicSizeDlg)
  55. m_strFile = _T("");
  56. m_strHeight = _T("");
  57. m_strWidth = _T("");
  58. //}}AFX_DATA_INIT
  59. // Note that LoadIcon does not require a subsequent DestroyIcon in Win32
  60. m_hIcon = AfxGetApp()->LoadIcon(IDR_MAINFRAME);
  61. }
  62. void CPicSizeDlg::DoDataExchange(CDataExchange* pDX)
  63. {
  64. CDialog::DoDataExchange(pDX);
  65. //{{AFX_DATA_MAP(CPicSizeDlg)
  66. DDX_Text(pDX, IDC_FILE, m_strFile);
  67. DDX_Text(pDX, IDC_HEIGHT, m_strHeight);
  68. DDX_Text(pDX, IDC_WIDTH, m_strWidth);
  69. //}}AFX_DATA_MAP
  70. }
  71. BEGIN_MESSAGE_MAP(CPicSizeDlg, CDialog)
  72. //{{AFX_MSG_MAP(CPicSizeDlg)
  73. ON_WM_SYSCOMMAND()
  74. ON_WM_PAINT()
  75. ON_WM_QUERYDRAGICON()
  76. ON_BN_CLICKED(IDC_BROWSE, OnBrowse)
  77. ON_BN_CLICKED(IDC_GETSIZE, OnGetsize)
  78. //}}AFX_MSG_MAP
  79. END_MESSAGE_MAP()
  80. /////////////////////////////////////////////////////////////////////////////
  81. // CPicSizeDlg message handlers
  82. BOOL CPicSizeDlg::OnInitDialog()
  83. {
  84. CDialog::OnInitDialog();
  85. // Add "About..." menu item to system menu.
  86. // IDM_ABOUTBOX must be in the system command range.
  87. ASSERT((IDM_ABOUTBOX & 0xFFF0) == IDM_ABOUTBOX);
  88. ASSERT(IDM_ABOUTBOX < 0xF000);
  89. CMenu* pSysMenu = GetSystemMenu(FALSE);
  90. if (pSysMenu != NULL)
  91. {
  92. CString strAboutMenu;
  93. strAboutMenu.LoadString(IDS_ABOUTBOX);
  94. if (!strAboutMenu.IsEmpty())
  95. {
  96. pSysMenu->AppendMenu(MF_SEPARATOR);
  97. pSysMenu->AppendMenu(MF_STRING, IDM_ABOUTBOX, strAboutMenu);
  98. }
  99. }
  100. // Set the icon for this dialog.  The framework does this automatically
  101. //  when the application's main window is not a dialog
  102. SetIcon(m_hIcon, TRUE); // Set big icon
  103. SetIcon(m_hIcon, FALSE); // Set small icon
  104. // TODO: Add extra initialization here
  105. return TRUE;  // return TRUE  unless you set the focus to a control
  106. }
  107. void CPicSizeDlg::OnSysCommand(UINT nID, LPARAM lParam)
  108. {
  109. if ((nID & 0xFFF0) == IDM_ABOUTBOX)
  110. {
  111. CAboutDlg dlgAbout;
  112. dlgAbout.DoModal();
  113. }
  114. else
  115. {
  116. CDialog::OnSysCommand(nID, lParam);
  117. }
  118. }
  119. // If you add a minimize button to your dialog, you will need the code below
  120. //  to draw the icon.  For MFC applications using the document/view model,
  121. //  this is automatically done for you by the framework.
  122. void CPicSizeDlg::OnPaint() 
  123. {
  124. if (IsIconic())
  125. {
  126. CPaintDC dc(this); // device context for painting
  127. SendMessage(WM_ICONERASEBKGND, (WPARAM) dc.GetSafeHdc(), 0);
  128. // Center icon in client rectangle
  129. int cxIcon = GetSystemMetrics(SM_CXICON);
  130. int cyIcon = GetSystemMetrics(SM_CYICON);
  131. CRect rect;
  132. GetClientRect(&rect);
  133. int x = (rect.Width() - cxIcon + 1) / 2;
  134. int y = (rect.Height() - cyIcon + 1) / 2;
  135. // Draw the icon
  136. dc.DrawIcon(x, y, m_hIcon);
  137. }
  138. else
  139. {
  140. CDialog::OnPaint();
  141. }
  142. }
  143. // The system calls this to obtain the cursor to display while the user drags
  144. //  the minimized window.
  145. HCURSOR CPicSizeDlg::OnQueryDragIcon()
  146. {
  147. return (HCURSOR) m_hIcon;
  148. }
  149. void CPicSizeDlg::OnBrowse() 
  150. {
  151. //构造文件对话框,并过滤掉所有非bmp的文件
  152. CFileDialog dlg(TRUE,NULL,NULL,OFN_HIDEREADONLY|OFN_OVERWRITEPROMPT,
  153. "Bmp Files(*.bmp)|*.bmp|",NULL);
  154. if(dlg.DoModal())
  155. {
  156. //获得文件的完整路径
  157. m_strFile = dlg.GetPathName();
  158. UpdateData(FALSE);
  159. }
  160. }
  161. void CPicSizeDlg::OnGetsize() 
  162. {
  163. UpdateData(TRUE);
  164. //m_strFile是位图文件的路径
  165. if(m_strFile == "")
  166. {
  167. AfxMessageBox("请选择文件");
  168. }
  169. CFile file;
  170. if( !file.Open( m_strFile, CFile::modeRead) )
  171. return ;
  172. BITMAPFILEHEADER bmfHeader;
  173. //读位图文件头信息
  174. if (file.Read((LPSTR)&bmfHeader, sizeof(bmfHeader)) != sizeof(bmfHeader))
  175. return ;
  176. //判断是否是BMP
  177. if (bmfHeader.bfType != ((WORD) ('M' << 8) | 'B'))
  178. return ; 
  179. //读位图头信息
  180. BITMAPINFOHEADER bmiHeader; 
  181. if (file.Read((LPSTR)&bmiHeader, sizeof(bmiHeader)) !=sizeof(bmiHeader))
  182. return ;
  183. //获得大小信息,并显示
  184. int bmWidth=bmiHeader.biWidth;
  185. int bmHeight=bmiHeader.biHeight;
  186. m_strWidth.Format("宽度:%d",bmWidth);
  187. m_strHeight.Format("高度:%d",bmHeight);
  188. UpdateData(FALSE);
  189. }