Click here to Skip to main content
15,886,199 members
Articles / Desktop Programming / MFC

CxImage

Rate me:
Please Sign up or sign in to vote.
4.65/5 (949 votes)
15 Feb 2008Zlib13 min read 12.9M   300.6K   1.6K  
CxImage is a C++ class to load, save, display, transform BMP, JPEG, GIF, PNG, TIFF, MNG, ICO, PCX, TGA, WMF, WBMP, JBG, J2K images.
// logomdi.h : header file
/////////////////////////////////////////////////////////////////////////////
// CLogoMdi window
#if !defined(_CLOGOMDI_H)
#define _CLOGOMDI_H

#include "ximage.h"

class CLogoMdi : public CWnd
{
// Construction
public:
    CLogoMdi();
// Implementation
public:
    virtual ~CLogoMdi();
    // Generated message map functions
protected:
    CSize m_sizeClient ;
	CFont m_LogoFont;
	CString sLogoString;
	CxImage* bgImage;
    //{{AFX_MSG(CLogoMdi)
    afx_msg BOOL OnEraseBkgnd(CDC* pDC);
    afx_msg void OnSize(UINT nType, int cx, int cy);
    //}}AFX_MSG
    DECLARE_MESSAGE_MAP()
};
/////////////////////////////////////////////////////////////////////////////
#endif

By viewing downloads associated with this article you agree to the Terms of Service and the article's licence.

If a file you wish to view isn't highlighted, and is a text file (not binary), please let us know and we'll add colourisation support for it.

License

This article, along with any associated source code and files, is licensed under The zlib/libpng License


Written By
Italy Italy
This member has not yet provided a Biography. Assume it's interesting and varied, and probably something to do with programming.

Comments and Discussions