1. 程式人生 > >MFC顯示JPG圖片

MFC顯示JPG圖片

分享一下我老師大神的人工智慧教程!零基礎,通俗易懂!http://blog.csdn.net/jiangjunshow

也歡迎大家轉載本篇文章。分享知識,造福人民,實現我們中華民族偉大復興!

               

參考文章:http://blog.csdn.net/crearo/article/details/1328974

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

效果截圖:


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

主要程式碼如下:

//************************************// 方法說明:    顯示JPG和GIF、BMP圖片// 引數說明:    CDC * pDC           裝置環境物件
// 引數說明:    CString strPath     要顯示的圖片路徑 // 引數說明:    int x               要顯示的X位置// 引數說明:    int y               要顯示的Y位置
// 返回值:      BOOL                成功返回TRUE,否則返回FALSE//************************************BOOL CShowJpgDlg::ShowJpgGif(CDC* pDC,CString strPath, int x, int y){    CFileStatus fstatus;      CFile file;      ULONGLONG cb;      // 開啟檔案並檢測檔案的有效性     if (!file.Open(strPath,CFile::modeRead))     {         return FALSE;     }     if (!file.GetStatus(strPath,fstatus))     {         return FALSE;     }     if ((cb =fstatus.m_size)<=0)     {         return FALSE;     }     // 根據檔案大小分配記憶體空間,記得釋放記憶體     HGLOBAL hGlobal = GlobalAlloc(GMEM_MOVEABLE, (unsigned int)cb);        if (hGlobal== NULL)       {          return FALSE;      }      // 鎖定剛才分配的記憶體空間      LPVOID pvData = NULL;        pvData = GlobalLock(hGlobal);      if (pvData == NULL)        {              GlobalFree(hGlobal);  // 記得釋放記憶體            return FALSE;      }       // 將檔案放到流中      IStream *pStm;        file.Read(pvData,(unsigned int)cb);        GlobalUnlock(hGlobal);        CreateStreamOnHGlobal(hGlobal, TRUE, &pStm);       // 從流中載入圖片    // 顯示JPEG和GIF格式的圖片,GIF只能顯示一幀,還不能顯示動畫,    // 要顯示動畫GIF請使用ACTIVE控制元件。    IPicture *pPic;     if(OleLoadPicture(pStm,(LONG)fstatus.m_size,TRUE,IID_IPicture,(LPVOID*)&pPic)!=S_OK)     {         GlobalFree(hGlobal);  // 記得釋放記憶體        return FALSE;    }    //獲取影象寬和高,注意這裡的寬和高不是影象的解析度    OLE_XSIZE_HIMETRIC hmWidth;      OLE_YSIZE_HIMETRIC hmHeight;      pPic->get_Width(&hmWidth);      pPic->get_Height(&hmHeight);      // 將影象寬度和高度單位轉化為畫素單位   //#define HIMETRIC_PER_INCH 2540   //int nPicWidth =  MulDiv(hmWidth, GetDeviceCaps(GetDC()->m_hDC, LOGPIXELSX),2540);   //int nPicHeight = MulDiv(hmHeight, GetDeviceCaps(GetDC()->m_hDC, LOGPIXELSY),2540);       //HRESULT Render(    //    HDC hdc, //Handle of device context on which to render the image    //    long x,  //Horizontal position of image in hdc    //    long y,  //Vertical position of image in hdc    //    long cx, //Horizontal dimension of destination rectangle    //    long cy, //Vertical dimension of destination rectangle    //    OLE_XPOS_HIMETRIC xSrc,      //Horizontal offset in source picture    //    OLE_YPOS_HIMETRIC ySrc,      //Vertical offset in source picture    //    OLE_XSIZE_HIMETRIC cxSrc,    //Amount to copy horizontally in source picture    //    OLE_YSIZE_HIMETRIC cySrc,    //Amount to copy vertically in source picture    //    LPCRECT prcWBounds           //Pointer to position of destination for a metafile hdc    //    );    //use render function display image    RECT rtWnd;    pDC->GetWindow()->GetWindowRect(&rtWnd);    int iWndWidth=rtWnd.right-rtWnd.left;    int iWndHeight=rtWnd.bottom-rtWnd.top;        if(FAILED(pPic->Render(*pDC,x,y,iWndWidth,iWndHeight,0,hmHeight,hmWidth,-hmHeight,NULL)))      {        pPic->Release();        GlobalFree(hGlobal);  // 記得釋放記憶體        return false;    }    pPic->Release();     GlobalFree(hGlobal);  // 記得釋放記憶體    return true;}//************************************// 方法說明:    顯示JPG和GIF、BMP圖片// 引數說明:    CDC * pDC           裝置環境物件// 引數說明:    CString strPath     要顯示的圖片路徑 // 引數說明:    int x               要顯示的X位置// 引數說明:    int y               要顯示的Y位置// 返回值:      BOOL                成功返回TRUE,否則返回FALSE//************************************BOOL CShowJpgDlg::ShowImage(CDC* pDC,CString strPath, int x, int y){       IPicture *pPic=NULL;     OleLoadPicturePath(CComBSTR(strPath.GetBuffer()), (LPUNKNOWN)NULL, 0, 0, IID_IPicture,(LPVOID*)&pPic);    if (NULL==pPic)    {        return FALSE;    }    // 獲取影象寬和高,注意這裡的寬和高不是影象的解析度    OLE_XSIZE_HIMETRIC hmWidth;      OLE_YSIZE_HIMETRIC hmHeight;      pPic->get_Width(&hmWidth);      pPic->get_Height(&hmHeight);      // 將影象寬度和高度單位轉化為畫素單位   //#define HIMETRIC_PER_INCH 2540   //int nPicWidth =  MulDiv(hmWidth, GetDeviceCaps(GetDC()->m_hDC, LOGPIXELSX),2540);   //int nPicHeight = MulDiv(hmHeight, GetDeviceCaps(GetDC()->m_hDC, LOGPIXELSY),2540);   // 獲取顯示圖片視窗的寬度和高度   RECT rtWnd;   pDC->GetWindow()->GetWindowRect(&rtWnd);   int iWndWidth=rtWnd.right-rtWnd.left;   int iWndHeight=rtWnd.bottom-rtWnd.top;   if(FAILED(pPic->Render(*pDC,x,y,iWndWidth,iWndHeight,0,hmHeight,hmWidth,-hmHeight,NULL)))     {       pPic->Release();       return false;   }   //記得釋放資源,不然會導致記憶體洩露   pPic->Release();       return true;}//************************************// 方法說明:    瀏覽圖片// 返回值:      void//************************************void CShowJpgDlg::OnBnClickedBtnBrowse(){    // TODO: Add your control notification handler code here    CFileDialog dlg(TRUE,"jpg","*.jpg", OFN_HIDEREADONLY|OFN_OVERWRITEPROMPT,         "JPEG檔案(*.jpg)|*.jpg|GIF檔案(*.gif)|*.gif|bmp檔案(*.bmp)|*.bmp|",NULL);     if(dlg.DoModal()==IDOK)     {         SetDlgItemText(IDC_TXT_PATH,dlg.GetPathName());        //設定靜態控制元件的樣式,使其可以使用點陣圖,並使點陣圖顯示居中        ((CStatic*)GetDlgItem(IDC_STATIC_IMG))-> ModifyStyle(0xF,SS_BITMAP|SS_CENTERIMAGE);  CDC *pDC=NULL;  pDC=GetDlgItem(IDC_STATIC_IMG)->GetDC();        //ShowJpgGif(pDC,dlg.GetPathName(),0,0);        ShowImage(pDC,dlg.GetPathName(),0,0);  ReleaseDC(pDC); // 記得釋放資源,不然會導致記憶體洩露    } }

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

例子工程(VS2010)下載地址:http://download.csdn.net/detail/friendan/7709595

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

您的十分滿意是我追求的宗旨。

您的一點建議是我後續的動力。








           

給我老師的人工智慧教程打call!http://blog.csdn.net/jiangjunshow

這裡寫圖片描述