彩票走势图

图像处理控件ImageGear for .NET教程:C# WPF应用程序创建示例(2)

原创|使用教程|编辑:郝浩|2013-09-13 14:03:51.000|阅读 995 次

概述:ImageGear for .NET提供了目前最先进的用于创建、控制、更加安全、高质量的成像应用程序。本文将讲解如何使用ImageGear for .NET创建一个简单的C# WPF应用程序,这个应用程序将会实现加载、显示、保存图像的功能。

# 慧都年终大促·界面/图表报表/文档/IDE等千款热门软控件火热促销中 >>

相关链接:

在前面的《图像处理控件ImageGear for .NET教程: C# WPF应用程序创建示例(1)》一文中已经讲解了如何在中对于C# WPF应用程序创建了项目,本文将继续前文。

设计窗体

一、创建在窗体中的菜单

  • 在Windows Forms工具箱中,拖一个MenuStrip控件到这个窗体中。
  • 创建三个菜单,命名为File、View、Processing。
  • 在File菜单下,添加Load Page 和 Exit。
  • 在View菜单下,添加Zoom In 和 Zoom Out。
  • 在Processing菜单下,添加Rotate 90、Rotate 180、Rotate 270。
  • 对于本次的教程,保持控件默认的名称,并双击每个项目,创建一个控制器。

二、在窗体中添加ImageGear Page View控件

  • 在Windows Forms工具箱中,拖拽ImGearPageView控件到窗体上。
  • 设置imGearPageView1控件的Dock属性为“fill”,这个将会使得控件以窗体来重新调整。
  • 保留默认的控件名称,比如imGearPageView1控件。现在窗体的外观就会如下所示:

图像处理控件ImageGear for .NET教程:C# WPF应用程序创建示例(2)

开发应用程序

一、首先,添加必要的using语句

  • 通过右键单击窗口打开窗口代码,选择查看代码。
  • 在代码的最上面,添加下面的语句。
using System.IO;
using System.Diagnostics;
using ImageGear;
using ImageGear.Core;
using ImageGear.Windows.Forms;
using ImageGear.Display;
using ImageGear.Processing;
using ImageGear.Formats;


二、添加下面的域到Form1:

// holds the image data 
 private ImGearPage imGearPage = null;
 // controls how the page is displayed 
 private ImGearPageDisplay imGearPageDisplay = null;


三、如果你使用的是运行时授权,调用InitializeComponent之前,添加授权初始化代码到Form1构造函数(Form1())。如果你使用的是评估或开发(工具包)授权的话,就不需要。

//***The SetSolutionName, SetSolutionKey and possibly the SetOEMLicenseKey 
//methods must be called to distribute the runtime.***
//ImGearLicense.SetSolutionName("YourSolutionName");
//ImGearLicense.SetSolutionKey(12345, 12345, 12345, 12345);
//Manually Reported Runtime licenses also require the following method 
//call to SetOEMLicenseKey.
//ImGearLicense.SetOEMLicenseKey("2.0.AStringForOEMLicensing...");

四、在之前代码的下面,添加下面的调用来初始化引用的格式。

// Support for common formats:
五、现在在导入页面菜单控制器中添加下面的代码:
private void loadPageToolStripMenuItem_Click(object sender, EventArgs e)
{
    OpenFileDialog openFileDialog1 = new OpenFileDialog();
    openFileDialog1.Filter =
    ImGearFileFormats.GetSavingFilter(ImGearSavingFormats.UNKNOWN);
   
    if (DialogResult.OK == openFileDialog1.ShowDialog())
    {
        using (FileStream stream =
            new FileStream(openFileDialog1.FileName, FileMode.Open,
                FileAccess.Read, FileShare.Read))
        {
            try
            {
                // Load the image into the page 
                imGearPage = ImGearFileFormats.LoadPage(stream, 0);
            }
            catch (ImGearException ex)
            {
                Debug.WriteLine(ex.Message);
            }
        }
        if (null != imGearPage && null != imGearPage.DIB &&
        !imGearPage.DIB.IsEmpty())
        {
            // create a new page display 
            imGearPageDisplay = new ImGearPageDisplay(imGearPage);
            // associate the page display with the page view 
            imGearPageView1.Display = imGearPageDisplay;
            // cause the page view to repaint 
            imGearPageView1.Invalidate();
        }
    } 
}

开发应用程序的其他步骤敬请期待下文。

>>>ImageGear for .NET 下载


标签:

本站文章除注明转载外,均为本站原创或翻译。欢迎任何形式的转载,但请务必注明出处、不得修改原文相关链接,如果存在内容上的异议请邮件反馈至chenjj@pclwef.cn

文章转载自:慧都控件

为你推荐

  • 推荐视频
  • 推荐活动
  • 推荐产品
  • 推荐文章
  • 慧都慧问
扫码咨询


添加微信 立即咨询

电话咨询

客服热线
023-68661681

TOP