抓屏并保存为BMP文件Dlg.cpp
上传用户:shibojindu
上传日期:2013-06-09
资源大小:37k
文件大小:3k
源码类别:

屏幕保护

开发平台:

Visual C++

  1. // 抓屏并保存为BMP文件Dlg.cpp : implementation file
  2. //
  3. #include "stdafx.h"
  4. #include "抓屏并保存为BMP文件.h"
  5. #include "抓屏并保存为BMP文件Dlg.h"
  6. #ifdef _DEBUG
  7. #define new DEBUG_NEW
  8. #undef THIS_FILE
  9. static char THIS_FILE[] = __FILE__;
  10. #endif
  11. /////////////////////////////////////////////////////////////////////////////
  12. // CBMPDlg dialog
  13. CBMPDlg::CBMPDlg(CWnd* pParent /*=NULL*/)
  14. : CDialog(CBMPDlg::IDD, pParent)
  15. {
  16. //{{AFX_DATA_INIT(CBMPDlg)
  17. m_tip = _T("");
  18. //}}AFX_DATA_INIT
  19. // Note that LoadIcon does not require a subsequent DestroyIcon in Win32
  20. m_hIcon = AfxGetApp()->LoadIcon(IDR_MAINFRAME);
  21. }
  22. void CBMPDlg::DoDataExchange(CDataExchange* pDX)
  23. {
  24. CDialog::DoDataExchange(pDX);
  25. //{{AFX_DATA_MAP(CBMPDlg)
  26. DDX_Text(pDX, IDC_EDIT1, m_tip);
  27. //}}AFX_DATA_MAP
  28. }
  29. BEGIN_MESSAGE_MAP(CBMPDlg, CDialog)
  30. //{{AFX_MSG_MAP(CBMPDlg)
  31. ON_WM_PAINT()
  32. ON_WM_QUERYDRAGICON()
  33. ON_BN_CLICKED(IDC_BUTTON1, OnCaptureSave)
  34. //}}AFX_MSG_MAP
  35. END_MESSAGE_MAP()
  36. /////////////////////////////////////////////////////////////////////////////
  37. // CBMPDlg message handlers
  38. BOOL CBMPDlg::OnInitDialog()
  39. {
  40. CDialog::OnInitDialog();
  41. // Set the icon for this dialog.  The framework does this automatically
  42. //  when the application's main window is not a dialog
  43. SetIcon(m_hIcon, TRUE); // Set big icon
  44. SetIcon(m_hIcon, FALSE); // Set small icon
  45. // TODO: Add extra initialization here
  46. return TRUE;  // return TRUE  unless you set the focus to a control
  47. }
  48. // If you add a minimize button to your dialog, you will need the code below
  49. //  to draw the icon.  For MFC applications using the document/view model,
  50. //  this is automatically done for you by the framework.
  51. void CBMPDlg::OnPaint() 
  52. {
  53. if (IsIconic())
  54. {
  55. CPaintDC dc(this); // device context for painting
  56. SendMessage(WM_ICONERASEBKGND, (WPARAM) dc.GetSafeHdc(), 0);
  57. // Center icon in client rectangle
  58. int cxIcon = GetSystemMetrics(SM_CXICON);
  59. int cyIcon = GetSystemMetrics(SM_CYICON);
  60. CRect rect;
  61. GetClientRect(&rect);
  62. int x = (rect.Width() - cxIcon + 1) / 2;
  63. int y = (rect.Height() - cyIcon + 1) / 2;
  64. // Draw the icon
  65. dc.DrawIcon(x, y, m_hIcon);
  66. }
  67. else
  68. {
  69. CDialog::OnPaint();
  70. }
  71. }
  72. // The system calls this to obtain the cursor to display while the user drags
  73. //  the minimized window.
  74. HCURSOR CBMPDlg::OnQueryDragIcon()
  75. {
  76. return (HCURSOR) m_hIcon;
  77. }
  78. void CBMPDlg::OnCaptureSave() 
  79. {
  80. // TODO: Add your control notification handler code here
  81.    //获得输入的保存路径
  82. CFileDialog savePath(FALSE ,NULL,"save.bmp",OFN_HIDEREADONLY,"Bitmap Files(*.bmp)|*.bmp||",NULL);
  83. savePath.m_ofn.lpstrTitle="请选择保存路径并输入文件名";
  84. if(savePath.DoModal()==IDOK)
  85. {
  86.    CString fullName;
  87.    fullName=savePath.GetPathName();
  88.        
  89.    m_tip="屏幕成功拷贝";
  90.    UpdateData(FALSE);
  91.    //获得屏幕窗口的对象句柄
  92.    CWnd *pWnd=GetDesktopWindow();
  93.    //对话框窗口最小化,使截到的屏幕不包含对话框窗口
  94.    this->ShowWindow(SW_SHOWMINIMIZED);
  95.    //将屏幕窗口拷贝到DIB位图中
  96.    HANDLE hDib=DIBFromWindow(pWnd,NULL);  
  97.    CFile file;
  98.    file.Open(fullName,CFile::modeCreate|CFile::modeWrite);
  99.    SaveToFile(hDib,file);//将位图存为指定名字的文件
  100.    file.Close();
  101.    GlobalFree(hDib);
  102. }
  103. }