VC++ 2005中显示jpg,bmp,gif图像的方法

 IPicture接口是Window95及以上操作系统支持的一个COM接口,它用来操作各种在WINDOWS常见的图像格式。如,BMP、JPEG、GIF等许多文件格式都能识别。使用很方便。但是可能很多朋友对这个接口并不很熟悉,或者不太了解对COM接口的操作。

使用方法:

                 CPicture pic;
                 pic.Load(路径);
                 pic.Render(&dc,&CRect(10,10,200,200));
                

picture.h

 

#pragma  once
#include 
< atlbase.h >

//
//  Picture object--encapsulates IPicture
//
class  CPicture  {
public:
    CPicture()
{};
    
~CPicture(){};

    
// Load frm various sosurces
    BOOL Load(UINT nIDRes);
    BOOL Load(LPCTSTR pszPathName);
    BOOL Load(CFile
& file);
    BOOL Load(CArchive
& ar);
    BOOL Load(IStream
* pstm);

    
// render to device context
    BOOL Render(CDC* pDC, CRect rc=CRect(0,0,0,0),
        LPCRECT prcMFBounds
=NULL) const;

    CSize GetImageSize(CDC
* pDC=NULL) const;

    
operator IPicture*() {
        
return m_spIPicture;
    }


    
void GetHIMETRICSize(OLE_XSIZE_HIMETRIC& cx, OLE_YSIZE_HIMETRIC& cy) const {
        cx 
= cy = 0;
        const_cast
<CPicture*>(this)->m_hr = m_spIPicture->get_Width(&cx);
        ASSERT(SUCCEEDED(m_hr));
        const_cast
<CPicture*>(this)->m_hr = m_spIPicture->get_Height(&cy);
        ASSERT(SUCCEEDED(m_hr));
    }


    
void Free() {
        
if (m_spIPicture) {
            m_spIPicture.Release();
        }

    }


protected:
    CComQIPtr
<IPicture>m_spIPicture;         // ATL smart pointer to IPicture
    HRESULT m_hr;                                 // last error code
}
;

 

 

 

Picture.cpp

#include  " StdAfx.h "
#include 
" Picture.h "

#ifdef _DEBUG
#define  new DEBUG_NEW
#undef  THIS_FILE
static   char  THIS_FILE[]  =  __FILE__;
#endif

////
//  CPicture implementation
//


//
//  Load from resource. Looks for "IMAGE" type.
//
BOOL CPicture::Load(UINT nIDRes)
{
    
// find resource in resource file
    HINSTANCE hInst = AfxGetResourceHandle();
    HRSRC hRsrc 
= ::FindResource(hInst,
        MAKEINTRESOURCE(nIDRes),
        
"IMAGE"); // type
    if (!hRsrc)
        
return FALSE;

    
// load resource into memory
    DWORD len = SizeofResource(hInst, hRsrc);
    BYTE
* lpRsrc = (BYTE*)LoadResource(hInst, hRsrc);
    
if (!lpRsrc)
        
return FALSE;

    
// create memory file and load it
    CMemFile file(lpRsrc, len);
    BOOL bRet 
= Load(file);
    FreeResource(hRsrc);
    GlobalFree(lpRsrc);
    
return bRet;
}


//
//  Load from path name.
//
BOOL CPicture::Load(LPCTSTR pszPathName)
{
    CFile file;
    
if (!file.Open(pszPathName, CFile::modeRead|CFile::shareDenyWrite))
        
return FALSE;
    BOOL bRet 
= Load(file);
    file.Close();
    
return bRet;
}


//
//  Load from CFile
//
BOOL CPicture::Load(CFile &  file)
{
    CArchive ar(
&file, CArchive::load | CArchive::bNoFlushOnDelete);
    
return Load(ar);
}


//
//  Load from archive--create stream and load from stream.
//
BOOL CPicture::Load(CArchive &  ar)
{
    CArchiveStream arcstream(
&ar);
    
return Load((IStream*)&arcstream);
}


//
//  Load from stream (IStream). This is the one that really does it: call
//  OleLoadPicture to do the work.
//
BOOL CPicture::Load(IStream *  pstm)
{
    Free();
    HRESULT hr 
= OleLoadPicture(pstm, 0, FALSE,
        IID_IPicture, (
void**)&m_spIPicture);
    ASSERT(SUCCEEDED(hr) 
&& m_spIPicture);    
    
return TRUE;
}


//
//  Render to device context. Covert to HIMETRIC for IPicture.
//
BOOL CPicture::Render(CDC *  pDC, CRect rc, LPCRECT prcMFBounds)  const
{
    ASSERT(pDC);

    
if (rc.IsRectNull()) {
        CSize sz 
= GetImageSize(pDC);
        rc.right 
= sz.cx;
        rc.bottom 
= sz.cy;
    }

    
long hmWidth,hmHeight; // HIMETRIC units
    GetHIMETRICSize(hmWidth, hmHeight);
    m_spIPicture
->Render(*pDC, rc.left, rc.top, rc.Width(), rc.Height(),
        
0, hmHeight, hmWidth, -hmHeight, prcMFBounds);

    
return TRUE;
}


//
//  Get image size in pixels. Converts from HIMETRIC to device coords.
//
CSize CPicture::GetImageSize(CDC *  pDC)  const
{
    
if (!m_spIPicture)
        
return CSize(0,0);
    
    LONG hmWidth, hmHeight; 
// HIMETRIC units
    m_spIPicture->get_Width(&hmWidth);
    m_spIPicture
->get_Height(&hmHeight);
    CSize sz(hmWidth,hmHeight);
    
if (pDC==NULL) {
        CWindowDC dc(NULL);
        dc.HIMETRICtoDP(
&sz); // convert to pixels
    }
 else {
        pDC
->HIMETRICtoDP(&sz);
    }

    
return sz;
}

 

  • 0
    点赞
  • 1
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值