Click here to Skip to main content
Licence 
First Posted 31 Jan 2003
Views 103,523
Bookmarked 49 times

A simple Windows Forms image viewer

By | 31 Jan 2003 | Article
This is a simple viewer application which allows you to apply basic operation on images such as Rotate, Flip, ROI (Region of interest) zoom and Panning.

Sample Image - LimfROI.jpg
Sample Image - LimfROI2.jpg

Introduction

This is a simple viewer application which allows you to apply basic operation on images such as Rotate, Flip, ROI (Region of interest) zoom and Panning. It offers a sample example for the powerful Matrix class use and the way to have unclassical forms look. A simple windowing method is implemented using middle muse button (available for grayscale image).

Using the code

The interesting code is based on the DisplayPort class which acts as a viewport. A command mechanism is also develop to allow multiple DisplayPort to interact with the user cooperatively. Adding new behaviour such as displaying and designing graphics above the image is easy. See the DisplayLinkRind class which is a manager of simple text overlays.

To add a DisplayPort to a WindowsForm just add a member like this and chain the MouseDown event:

public LimfWnd()
{
    this.ClientSize = new System.Drawing.Size(464, 344);

    this.m_DisplayPort = new DisplayPort();

    InitializeComponent();

    this.m_DisplayPort.MouseDown += new MouseEventHandler(LimfWnd_MouseDown);

            ...

Then add the controls to the form:

private void InitializeComponent()
{
    // 
    // LimfWnd
    // 
    this.AllowDrop = true;
    this.AutoScaleBaseSize = new System.Drawing.Size(5, 13);
    this.BackColor = System.Drawing.SystemColors.WindowText;

    this.ClientSize = new System.Drawing.Size(SystemInformation.WorkingArea.Width/2, 
                                              SystemInformation.WorkingArea.Height/2);

    this.Controls.AddRange(new System.Windows.Forms.Control[] {this.m_DisplayPort,
                                                                          this.splitter1});

            ...

Add image to the DisplayPort:

private void LoadImage(object sender, System.EventArgs e)
{
    FileDialog  Boite = new OpenFileDialog();
    Boite.ShowDialog();

    if(Boite.FileName.Length > 0)
    {
        Image Img = Image.FromFile(Boite.FileName);
        m_DisplayPort.SetImage(Img);
    }
}
            ...

Chain the menu list event:

private void LimfWnd_MouseDown(object sender, System.Windows.Forms.MouseEventArgs e)
{
    if(e.Button == MouseButtons.Right)
    {
        CMenuActionList CommandsLst;

        if(sender.GetType() == m_DisplayPort.GetType())
            CommandsLst = ((DisplayPort) sender).GetCommand(null);
        else
            CommandsLst = new CMenuActionList();

        if(CommandsLst == null)
            CommandsLst = new CMenuActionList();

        CommandsLst.AddMenu(1, "Quit", 1, new System.EventHandler(Quit));
    

Points of Interest

The main difficulty was to create the basic rotate/flip routines to manage the coordinate converter. The only limit I found regarding the use of GDI+ was the 16 bits per pixel format which is not implemented, so no use for such images.

History

Version 1.0 is the first release.

License

This article has no explicit license attached to it but may contain usage terms in the article text or the download files themselves. If in doubt please contact the author via the discussion board below.

A list of licenses authors might use can be found here

About the Author

corvado



France France

Member



Sign Up to vote   Poor Excellent
Add a reason or comment to your vote: x
Votes of 3 or less require a comment

Comments and Discussions

 
You must Sign In to use this message board. (secure sign-in)
 
Search this forum  
 FAQ
    Noise  Layout  Per page   
  Refresh
AnswerError on Windows xp Pinmemberpippo pioppo3:09 28 Mar '12  
Questionloading image in the specified location with actual size PinmemberMrKyaw17:39 13 Mar '12  
GeneralGreat Code Pinmemberafshin_a11:13 30 Jul '08  
GeneralGreat component Pinmemberathmok@yahoo.co.uk1:17 1 Feb '07  
GeneralGreat Sample Pinmembervivekthangaswamy6:15 27 Jan '06  
Really Great sample
Generalreally nice one Pinmemberricharding4:16 16 Jan '06  
GeneralGreat but needed in vb.net Pinmemberchinnivenkat20:20 9 Aug '04  
GeneralRe: Great but needed in vb.net Pinmemberchinnivenkat17:07 10 Aug '04  
GeneralGood job! Pinmemberdon!marco22:15 22 Jun '04  
GeneralDemo project liks MSCOREE.DLL PinmemberGeorgi Petrov2:06 5 May '04  
GeneralRe: Demo project liks MSCOREE.DLL Pinmemberdon!marco22:19 22 Jun '04  
GeneralOne Really Weird Thing. Pinmemberkipling5:08 21 Feb '03  

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.

Permalink | Advertise | Privacy | Mobile
Web03 | 2.5.120529.1 | Last Updated 1 Feb 2003
Article Copyright 2003 by corvado
Everything else Copyright © CodeProject, 1999-2012
Terms of Use
Layout: fixed | fluid