• linkedu视频
  • 平面设计
  • 电脑入门
  • 操作系统
  • 办公应用
  • 电脑硬件
  • 动画设计
  • 3D设计
  • 网页设计
  • CAD设计
  • 影音处理
  • 数据库
  • 程序设计
  • 认证考试
  • 信息管理
  • 信息安全
菜单
linkedu.com
  • 网页制作
  • 数据库
  • 程序设计
  • 操作系统
  • CMS教程
  • 游戏攻略
  • 脚本语言
  • 平面设计
  • 软件教程
  • 网络安全
  • 电脑知识
  • 服务器
  • 视频教程
  • JavaScript
  • ASP.NET
  • PHP
  • 正则表达式
  • AJAX
  • JSP
  • ASP
  • Flex
  • XML
  • 编程技巧
  • Android
  • swift
  • C#教程
  • vb
  • vb.net
  • C语言
  • Java
  • Delphi
  • 易语言
  • vc/mfc
  • 嵌入式开发
  • 游戏开发
  • ios
  • 编程问答
  • 汇编语言
  • 微信小程序
  • 数据结构
  • OpenGL
  • 架构设计
  • qt
  • 微信公众号
您的位置:首页 > 程序设计 >C#教程 > Winform下实现图片切换特效的方法

Winform下实现图片切换特效的方法

作者: 字体:[增加 减小] 来源:互联网 时间:2017-05-28

通过本文主要向大家介绍了winform特效,c#winform特效,winform界面特效,winform界面设计,winform等相关知识,希望对您有所帮助,也希望大家支持linkedu.com www.linkedu.com

本文实例讲述了Winform下实现图片切换特效的方法,是应用程序开发中非常实用的一个功能。分享给大家供大家参考之用。具体方法如下:

本实例源自网络,功能较为齐全、丰富!主要功能代码如下:

using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Text;
using System.Drawing.Text;
using System.Drawing.Drawing2D;
using System.Drawing.Imaging;
using System.Windows.Forms;
namespace MengYu.Image
{
  public class ImageClass
  {
    /// <summary>
    /// 将图片转换成黑白色效果
    /// </summary>
    /// <param name="bmp">Bitmap 对象</param>
    /// <param name="picBox">PictureBox 对象</param>
    public static void HeiBaiSeImage(Bitmap bmp, PictureBox picBox)
    {
      //以黑白效果显示图像
      Bitmap oldBitmap;
      Bitmap newBitmap=null;
      try
      {
        int Height = bmp.Height;
        int Width = bmp.Width;
        newBitmap = new Bitmap(Width, Height);
        oldBitmap = bmp;
        Color pixel;
        for (int x = 0; x < Width; x++)
          for (int y = 0; y < Height; y++)
          {
            pixel = oldBitmap.GetPixel(x, y);
            int r, g, b, Result = 0;
            r = pixel.R;
            g = pixel.G;
            b = pixel.B;
            //实例程序以加权平均值法产生黑白图像
            int iType = 2;
            switch (iType)
            {
              case 0://平均值法
                Result = ((r + g + b) / 3);
                break;
              case 1://最大值法
                Result = r > g ? r : g;
                Result = Result > b ? Result : b;
                break;
              case 2://加权平均值法
                Result = ((int)(0.7 * r) + (int)(0.2 * g) + (int)(0.1 * b));
                break;
            }
            newBitmap.SetPixel(x, y, Color.FromArgb(Result, Result, Result));
          }
      }
      catch (Exception ex)
      {
        MessageBox.Show(ex.Message, "信息提示");
      }
      picBox.Image = newBitmap;
    }
    /// <summary>
    /// 雾化效果
    /// </summary>
    /// <param name="bmp"></param>
    /// <param name="picBox"></param>
    public static void WuHuaImage(Bitmap bmp, PictureBox picBox)
    {
      //雾化效果
      Bitmap oldBitmap;
      Bitmap newBitmap = null;
      try
      {
        int Height = bmp.Height;
        int Width = bmp.Width;
        newBitmap = new Bitmap(Width, Height);
        oldBitmap = bmp;
        Color pixel;
        for (int x = 1; x < Width - 1; x++)
          for (int y = 1; y < Height - 1; y++)
          {
            System.Random MyRandom = new Random();
            int k = MyRandom.Next(123456);
            //像素块大小
            int dx = x + k % 19;
            int dy = y + k % 19;
            if (dx >= Width)
              dx = Width - 1;
            if (dy >= Height)
              dy = Height - 1;
            pixel = oldBitmap.GetPixel(dx, dy);
            newBitmap.SetPixel(x, y, pixel);
          }
      }
      catch (Exception ex)
      {
        MessageBox.Show(ex.Message, "信息提示");
      }
      picBox.Image= newBitmap;
    }

    /// <summary>
    /// 锐化效果
    /// </summary>
    /// <param name="bmp"></param>
    /// <param name="picBox"></param>
    public static void RuiHuaImage(Bitmap bmp, PictureBox picBox)
    {
      Bitmap oldBitmap;
      Bitmap newBitmap = null;
      try
      {
        int Height = bmp.Height;
        int Width = bmp.Width;
        newBitmap = new Bitmap(Width, Height);
        oldBitmap = bmp;
        Color pixel;
        //拉普拉斯模板
        int[] Laplacian ={ -1, -1, -1, -1, 9, -1, -1, -1, -1 };
        for (int x = 1; x < Width - 1; x++)
          for (int y = 1; y < Height - 1; y++)
          {
            int r = 0, g = 0, b = 0;
            int Index = 0;
            for (int col = -1; col <= 1; col++)
              for (int row = -1; row <= 1; row++)
              {
                pixel = oldBitmap.GetPixel(x + row, y + col); r += pixel.R * Laplacian[Index];
                g += pixel.G * Laplacian[Index];
                b += pixel.B * Laplacian[Index];
                Index++;
              }
            //处理颜色值溢出
            r = r > 255 ? 255 : r;
            r = r < 0 ? 0 : r;
            g = g > 255 ? 255 : g;
            g = g < 0 ? 0 : g;
            b = b > 255 ? 255 : b;
            b = b < 0 ? 0 : b;
            newBitmap.SetPixel(x - 1, y - 1, Color.FromArgb(r, g, b));
          }
      }
      catch (Exception ex)
      {
        MessageBox.Show(ex.Message, "信息提示");
      }
      picBox.Image = newBitmap;
    }
    /// <summary>
    ///底片效果
    /// </summary>
    /// <param name="bmp">Bitmap 对象</param>
    /// <param name="picBox">PictureBox 对象</param>
    public static void DiPianImage(Bitmap bmp, PictureBox picBox)
    {
      Bitmap oldBitmap;
      Bitmap newBitmap = null;
      try
      {
        int Height = bmp.Height;
        int Width = bmp.Width;
        newBitmap = new Bitmap(Width, Height);
        oldBitmap = bmp;
        Color pixel;
        for (int x = 1; x < Width; x++)
        {
          for (int y = 1; y < Height; y++)
          {
            int r, g, b;
            pixel = oldBitmap.GetPixel(x, y);
            r = 255 - pixel.R;
            g = 255 - pixel.G;
            b = 255 - pixel.B;
            newBitmap.SetPixel(x, y, Color.FromArgb(r, g, b));
          }
        }
      }
      catch (Exception ex)
      {
        MessageBox.Show(ex.Message, "信息提示", MessageBoxButtons.OK, MessageBoxIcon.Information);
      }
      picBox.Image = newBitmap;
    }

    /// <summary>
    ///浮雕效果
    /// </summary>
    /// <param name="bmp">Bitmap 对象</param>
    /// <param name="picBox">PictureBox 对象</param>
    public static void FuDiaoImage(Bitmap bmp, PictureBox picBox)
    {
      Bitmap oldBitmap;
      Bitmap newBitmap = null;
      try
      {
        int Height = bmp.Height;
        int Width = bmp.Width;
        newBitmap = new Bitmap(Width, Height);
        oldBitmap = bmp;
        Color pixel1, pixel2;
        for (int x = 0; x < Width - 1; x++)
        {
          for (int y = 0; y < Height - 1; y++)
          {
            int r = 0, g = 0, b = 0;
            pixel1 = oldBitmap.GetPixel(x, y);
            pixel2 = oldBitmap.GetPixel(x + 1, y + 1);
            r = Math.Abs(pixel1.R - pixel2.R + 128);
            g = Math.Abs(pixel1.G - pixel2.G + 128);
            b = Math.Abs(pixel1.B - pixel2.B + 128);
            if (r > 255)
              r = 255;
            if (r < 0)
              r = 0;
            if (g > 255)
              g = 255;
            if (g < 0)
              g = 0;
            if (b > 255)
              b = 255;
            if (b < 0)
              b = 0;
            newBitmap.SetPixel(x, y, Color.FromArgb(r, g, b));
          }
        }
      }
      catch (Exception ex)
      {
        MessageBox.Show(ex.Message, "信息提示", MessageBoxButtons.OK, MessageBoxIcon.Information);
      }
      picBox.Image = newBitmap;
    }

    /// <summary>
    /// 日光照射效果
    /// </summary>
    /// <param name="bmp">Bitmap 对象</param>
    /// <param name="picBox">PictureBox 对象</param>
    public static void RiGuangZhaoSheImage(Bitmap bmp,PictureBox picBox)
    {
      //以光照效果显示图像
      Graphics MyGraphics = picBox.CreateGraphics();
      MyGraphics.Clear(Color.White);
      Bitmap MyBmp =



 
分享到:QQ空间新浪微博腾讯微博微信百度贴吧QQ好友复制网址打印

您可能想查找下面的文章:

  • WinForm特效之桌面上的遮罩层实现方法
  • Winform下实现图片切换特效的方法

相关文章

  • 2017-05-28基于使用递归推算指定位数的斐波那契数列值的解决方法
  • 2017-05-28C#结构体特性实例分析
  • 2017-05-28使用C#实现基于TCP和UDP协议的网络通信程序的基本示例
  • 2017-05-28C# double和decimal数据类型以截断的方式保留指定的小数位数
  • 2017-05-28C#读取QQ纯真IP数据库QQWry.Dat的代码
  • 2017-05-28C#隐式运行CMD命令(隐藏命令窗口)
  • 2017-05-28C#中volatile与lock用法
  • 2017-05-28C#实现利用泛型将DataSet转为Model的方法
  • 2017-05-28浅析C#中StringBuilder类的高效及与String的对比
  • 2017-05-28C# 判断字符串为空的几种办法

文章分类

  • JavaScript
  • ASP.NET
  • PHP
  • 正则表达式
  • AJAX
  • JSP
  • ASP
  • Flex
  • XML
  • 编程技巧
  • Android
  • swift
  • C#教程
  • vb
  • vb.net
  • C语言
  • Java
  • Delphi
  • 易语言
  • vc/mfc
  • 嵌入式开发
  • 游戏开发
  • ios
  • 编程问答
  • 汇编语言
  • 微信小程序
  • 数据结构
  • OpenGL
  • 架构设计
  • qt
  • 微信公众号

最近更新的内容

    • C#判断数据类型的简单示例代码
    • C#中实现可变参数实例
    • C#实现清除IE浏览器缓存的方法
    • C#中WebBrowser.DocumentCompleted事件多次调用问题解决方法
    • C#中const用法详解
    • C#程序中session的基本设置示例及清除session的方法
    • C#使用FolderBrowserDialog类实现选择打开文件夹方法详解
    • C#使用NPOI导入Excel的方法详解
    • 常用正则 常用的C#正则表达式
    • C#实现Winform鼠标拖动窗口大小时设定窗口最小尺寸的方法

关于我们 - 联系我们 - 免责声明 - 网站地图

©2020-2025 All Rights Reserved. linkedu.com 版权所有