YOU CAN CODE!

 

With The Case Of UCanCode.net  Release The Power OF  Visual C++ !   HomeProducts | PurchaseSupport | Downloads  
XD++ Library
DocVizor
TFC Library
Free Products
Technical Support
UCanCode.net


Get Ready to Unleash the Power of UCanCode .NET


UCanCode Software focuses on general application software development. We provide complete solution for developers. No matter you want to develop a simple database workflow application, or an large flow/diagram based system, our product will provide a complete solution for you. Our product had been used by hundreds of top companies around the world!

"100% source code provided! Free you from not daring to use components because of unable to master the key technology of components!"


MFC Sample Code: Load and Display PNG Image File

 
 

Sorry, it should have been PNGView.jpg

Introduction

This is a very simple Sample Code approach to display PNG files in MFC. Two common libraries provide the needed functionality: zlib and libpng. These libraries are included in the source file.

Background

I had been searching the net for a really simple PNG MFC example for a whole while. But all I found were C files that contained more preprocessor directives than keywords. I don't like preprocessor directives so I've written this example. It uses only one class to do the whole stuff.

Using the code

At first:

You might have to upgrade your include-folder settings, because libpng wants to know where your zlib.h is located. After you have unzipped the downloaded archive, you can find this file in the ...\zlib\code\ folder.

The FileOpen handler:

This chunk of code works off both reading and showing the PNG file:

// create temporary object
PngImage png;

// import png file
if ( png.load(dlg.GetPathName()) )
{
    // get size
    int width  = png.getWidth();
    int height = png.getHeight();

    // get blue, green, red and alpha values
    unsigned char* data = png.getBGRA();

    // free memory first
    if (m_bitmap) delete m_bitmap;
    if (m_visible) delete m_visible;

    // create a CBitmap to display
    m_bitmap = doCreateCompatibleBitmap(width, height, data, this);

    // used to speed up OnPaint()
    m_visible = doZoomBitmap(m_bitmap, this);

    // request graphical update
    Invalidate();
    UpdateWindow();
}

 

 

 

Copyright ?1998-2007 UCanCode.Net Software , all rights reserved.
Other product and company names herein may be the trademarks of their respective owners.

Please direct your questions or comments to webmaster@ucancode.net