YOU CAN CODE!

 

With The Case Of UCanCode.net  Release The Power OF  Visual C++ !   HomeProducts | PurchaseSupport | Downloads  
View in English
View in Japanese
View in
참고
View in Français
View in Italiano
View in 中文(繁體)
Download Evaluation
Pricing & Purchase?
E-XD++Visual C++/ MFC Products
Overview
Features Tour 
Electronic Form Solution
Visualization & HMI Solution
Power system HMI Solution
CAD Drawing and Printing Solution

Bar code labeling Solution
Workflow Solution

Coal industry HMI Solution
Instrumentation Gauge Solution

Report Printing Solution
Graphical modeling Solution
GIS mapping solution

Visio graphics solution
Industrial control SCADA &HMI Solution
BPM business process Solution

Industrial monitoring Solution
Flowchart and diagramming Solution
Organization Diagram Solution

Graphic editor Source Code
UML drawing editor Source Code
Map Diagramming Solution

Architectural Graphic Drawing Solution
Request Evaluation
Purchase
ActiveX COM Products
Overview
Download
Purchase
Technical Support
  General Q & A
Discussion Board
Contact Us

Links

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-2024 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