资源简介
C#数字图像处理3种典型方法:提取像素法、内存法、指针法。源代码
代码片段和文件信息
/*
* Copyright 2013 http://blog.csdn.net/fox666 https://code.csdn.net/fox666
*
* Licensed under the Apache License Version 2.0 (the “License“);
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing software
* distributed under the License is distributed on an “AS IS“ BASIS
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Windows.Forms;
namespace 第二章
{
public partial class Form1 : Form
{
private string curFileName;
private System.Drawing.Bitmap curBitmap;
public Form1()
{
InitializeComponent();
}
private void open_Click(object sender EventArgs e)
{
//创建OpenFileDialog
OpenFileDialog opnDlg = new OpenFileDialog();
opnDlg.Filter = “所有图像文件|*.bmp;*.pcx;*.png;*.jpg;*.gif;“ +
“*.tif;*.ico;*.dxf;*.cgm;*.cdr;*.wmf;*.eps;*.emf|“ +
“位图(*.bmp;*.jpg;*.png;...)|*.bmp;*.pcx;*.png;*.jpg;*.gif;*.tif;*.ico|“ +
“矢量图(*.wmf;*.eps;*.emf:...)|*.dxf;*.cgm;*.cdr;*.wmf;*.eps;*.emf“;
//设置对话框标题
opnDlg.title = “打开图像文件“;
//启用帮助按钮
opnDlg.ShowHelp = true;
//如果结果为打开选定文件
if (opnDlg.ShowDialog()==DialogResult.OK )
{
//读取当前选中文件名
curFileName = opnDlg.FileName;
//使用Image.
try
{
curBitmap = (Bitmap)Image.FromFile(curFileName);
}
catch ( Exception exp)
{
//抛出异常
MessageBox.Show(exp.Message);
}
//对窗体重新绘制
Invalidate();
}
}
private void save_Click(object sender EventArgs e)
{
//如果没有创建图像则退出
if (curBitmap == null)
return;
//调用SaveFileDialog
SaveFileDialog saveDlg = new SaveFileDialog();
//设置对话框标题
saveDlg.title=“保存为“;
//改写已经存在文件时提醒用户
saveDlg.OverwritePrompt = true;
//为图像选择一个筛选器
saveDlg.Filter = “BMP文件(*.bmp)|*.bmp|“ + “Gif文件(*.gif)|*.gif|“ + “Tiff文件(*.tif)|*.tif|“ +
“JPEG文件(*.jpg)|*.jpg|“ + “PNG文件(*.png)|*.png“;
//启用“帮助”按钮
saveDlg.ShowHelp = true;
//如果选择了格式,则保存图像
if (saveDlg.ShowDialog() == DialogResult.OK)
{
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
.CA.... 869 2013-12-16 16:01 第二章.sln
.CA..H. 19968 2013-12-20 21:25 第二章.suo
.CA.... 12800 2013-12-16 17:39 第二章\bin\Debug\第二章.exe
.CA.... 11600 2013-12-20 20:23 第二章\bin\Debug\第二章.vshost.exe
.CA.... 10290 2013-12-20 21:25 第二章\Form1.cs
.CA.... 5764 2013-12-20 21:25 第二章\Form1.Designer.cs
.CA.... 5817 2013-12-16 17:37 第二章\Form1.resx
.CA.... 1135 2013-12-20 21:26 第二章\Program.cs
.CA.... 1380 2013-12-16 16:01 第二章\Properties\AssemblyInfo.cs
.CA.... 2869 2013-12-16 16:01 第二章\Properties\Resources.Designer.cs
.CA.... 5612 2013-12-16 16:01 第二章\Properties\Resources.resx
.CA.... 1095 2013-12-16 16:01 第二章\Properties\Settings.Designer.cs
.CA.... 249 2013-12-16 16:01 第二章\Properties\Settings.settings
.CA.... 3899 2013-12-20 21:25 第二章\第二章.csproj
.C.D... 0 2013-12-20 21:26 第二章\bin\Debug
.C.D... 0 2013-12-16 16:01 第二章\bin
.C.D... 0 2013-12-16 16:01 第二章\Properties
.C.D... 0 2013-12-20 21:26 第二章
----------- --------- ---------- ----- ----
83347 18
相关资源
- c# vs2010 小游戏之五子棋
- c# winForm Ip地址输入控件反馈修改
- C#操作Mysql创建数据库,数据表,增、
- C#超市管理系统代码及窗体
- C# 基于三层架构开发的物流信息管理
- 9种预测、处理算法实现源代码c#
- 基于C#的网络五子棋对战
- C#网络版斗地主
- c# 同步网上聊天程序代码服务器+客户
- C#图像处理源代码包括包括均值滤波,
- 标准正态分布---由概率计算分位数C
- C# 用VScrollBar控制webbrowser的滚动条 简
- WPF查看Word文档应用程序源码C#源码
- C#根据字符串生成二维码并显示
- C# ,WinForm 多人聊天
- 人脸识别C#源码
- C# 实现画图软件
- C# 局域网聊天 无需服务器 自动搜索
- 用C#写成的网上订票系统
- C#加密(DES)
- DataGridView列标头带数据筛选功能(含
- c#自动录音
- 物资管理系统C#Access数据库简单应用
- C#画图软件-源程序代码
- 简易的点菜系统C#
- C#多人联机绘图程序,绘图,程序
- C#开发cad画图软件 GDI+
- C# CAD画图软件
- C# 自动排课系统
- C#winform DataGridView checkbox复选框 实现
评论
共有 条评论