当前位置:  编程技术>.net/c#/asp.net

c#加载BMP底图的实现代码一例

    来源: 互联网  发布时间:2014-08-30

    本文导语:  1、声明: private Point mouseOffset; //记录鼠标指针的坐标 private bool isMouseDown = false; //记录鼠标按键是否按下 2、调用: BLL.BitmapRegion.CreateControlRegion(this, new Bitmap(Application.StartupPath + "\pic\login.bmp")); 3、相关方法: #region MouseDow...

1、声明:

private Point mouseOffset; //记录鼠标指针的坐标
private bool isMouseDown = false; //记录鼠标按键是否按下

2、调用:

BLL.BitmapRegion.CreateControlRegion(this, new Bitmap(Application.StartupPath + "\pic\login.bmp"));

3、相关方法:

#region MouseDown事件
private void form1_MouseDown(object sender, System.Windows.Forms.MouseEventArgs e)
{
     int xOffset;
     int yOffset;

     if (e.Button == MouseButtons.Left) 
     {
  xOffset = -e.X;// -SystemInformation.FrameBorderSize.Width;
  yOffset = -e.Y;// -SystemInformation.FrameBorderSize.Height;
  mouseOffset = new Point(xOffset, yOffset);
  isMouseDown = true;        
     }
 }
 #endregion

 #region MouseMove事件
 private void form1_MouseMove(object sender, System.Windows.Forms.MouseEventArgs e)
 {
     if (isMouseDown) 
     {
  Point mousePos = Control.MousePosition;
  mousePos.Offset(mouseOffset.X, mouseOffset.Y);
  Location = mousePos;
     }
 }
 #endregion

 #region MouseUp事件
 private void form1_MouseUp(object sender, System.Windows.Forms.MouseEventArgs e)
 {
     // 修改鼠标状态isMouseDown的值
     // 确保只有鼠标左键按下并移动时,才移动窗体
     if (e.Button == MouseButtons.Left)
     {
  isMouseDown = false;
     }
 }
 #endregion

4、实现代码如下:

using System;
using System.Drawing;
using System.Drawing.Drawing2D;
using System.Windows.Forms;

namespace BLL
{
    /// 
    /// Summary description for BitmapRegion. 
    ///  
    public class BitmapRegion
    {
 public BitmapRegion()
 { }

 ///  
 /// Create and apply the region on the supplied control
 /// 创建支持位图区域的控件(目前有button和form)
 ///  
 /// The Control object to apply the region to控件 
 /// The Bitmap object to create the region from位图 
 public static void CreateControlRegion(Control control, Bitmap bitmap)
 {
     // Return if control and bitmap are null
     //判断是否存在控件和位图
     if (control == null || bitmap == null)
  return;

     // Set our control''s size to be the same as the bitmap
     //设置控件大小为位图大小
     control.Width = bitmap.Width;
     control.Height = bitmap.Height;
     // Check if we are dealing with Form here 
     //当控件是form时
     if (control is System.Windows.Forms.Form)
     {
  // Cast to a Form object
  //强制转换为FORM
  Form form = (Form)control;
  // Set our form''s size to be a little larger that the  bitmap just 
  // in case the form''s border style is not set to none in the first place 
  //当FORM的边界FormBorderStyle不为NONE时,应将FORM的大小设置成比位图大小稍大一点
  form.Width = control.Width;
  form.Height = control.Height;
  // No border 
  //没有边界
  form.FormBorderStyle = FormBorderStyle.None;
  // Set bitmap as the background image 
  //将位图设置成窗体背景图片
  form.BackgroundImage = bitmap;
  // Calculate the graphics path based on the bitmap supplied 
  //计算位图中不透明部分的边界
  GraphicsPath graphicsPath = CalculateControlGraphicsPath(bitmap);
  // Apply new region 
  //应用新的区域
  form.Region = new Region(graphicsPath);
     }
     // Check if we are dealing with Button here 
     //当控件是button时
     else if (control is System.Windows.Forms.Button)
     {
  // Cast to a button object 
  //强制转换为 button
  Button button = (Button)control;
  // Do not show button text 
  //不显示button text
  button.Text = "";

  // Change cursor to hand when over button 
  //改变 cursor的style
  button.Cursor = Cursors.Hand;
  // Set background image of button 
  //设置button的背景图片
  button.BackgroundImage = bitmap;

  // Calculate the graphics path based on the bitmap supplied 
  //计算位图中不透明部分的边界
  GraphicsPath graphicsPath = CalculateControlGraphicsPath(bitmap);
  // Apply new region 
  //应用新的区域
  button.Region = new Region(graphicsPath);
     }
 }
 ///  
 /// Calculate the graphics path that representing the figure in the bitmap 
 /// excluding the transparent color which is the top left pixel. 
 /// //计算位图中不透明部分的边界
 ///  
 /// The Bitmap object to calculate our graphics path from 
 /// Calculated graphics path 
 private static GraphicsPath CalculateControlGraphicsPath(Bitmap bitmap)
 {
     // Create GraphicsPath for our bitmap calculation 
     //创建 GraphicsPath
     GraphicsPath graphicsPath = new GraphicsPath();
     // Use the top left pixel as our transparent color 
     //使用左上角的一点的颜色作为我们透明色
     Color colorTransparent = bitmap.GetPixel(0, 0);
     // This is to store the column value where an opaque pixel is first found. 
     // This value will determine where we start scanning for trailing opaque pixels.
     //第一个找到点的X
     int colOpaquePixel = 0;
     // Go through all rows (Y axis) 
     // 偏历所有行(Y方向)
     for (int row = 0; row < bitmap.Height; row++)
     {
  // Reset value 
  //重设
  colOpaquePixel = 0;
  // Go through all columns (X axis) 
  //偏历所有列(X方向)
  for (int col = 0; col < bitmap.Width; col++)
  {
      // If this is an opaque pixel, mark it and search for anymore trailing behind 
      //如果是不需要透明处理的点则标记,然后继续偏历
      if (bitmap.GetPixel(col, row) != colorTransparent)
      {
   // Opaque pixel found, mark current position
   //记录当前
   colOpaquePixel = col;
   // Create another variable to set the current pixel position 
   //建立新变量来记录当前点
   int colNext = col;
   // Starting from current found opaque pixel, search for anymore opaque pixels 
   // trailing behind, until a transparent   pixel is found or minimum width is reached 
   ///从找到的不透明点开始,继续寻找不透明点,一直到找到或则达到图片宽度 
   for (colNext = colOpaquePixel; colNext < bitmap.Width; colNext++)
       if (bitmap.GetPixel(colNext, row) == colorTransparent)
    break;
   // Form a rectangle for line of opaque   pixels found and add it to our graphics path 
   //将不透明点加到graphics path
   graphicsPath.AddRectangle(new Rectangle(colOpaquePixel, row, colNext - colOpaquePixel, 1));
   // No need to scan the line of opaque pixels just found 
   col = colNext;
      }
  }
     }
     // Return calculated graphics path 
     return graphicsPath;
 }
    }
}

    
 
 

您可能感兴趣的文章:

  • c#动态加载卸载DLL的方法
  • 有关C#反射加载的问题
  • C#关于反射加载的问题
  • c# 反射加载的实例代码
  • C# 多线程读取注册表,加载至TreeView
  • C#基础 延迟加载介绍与实例
  • Linux下c函数dlopen实现加载动态库so文件代码举例
  • jQuery页面加载完毕再执行代码多种方法
  • jquery为动态加载的元素绑定事件的代码
  • jquery代码-如何检查图像是否已完全加载
  • JQuery在页面加载完成时执行函数的示例代码
  • Jquery在指定DIV加载HTML示例代码
  • php开源软件 iis7站长之家
  • jsp只在首次加载时调用action实现代码
  • jquery Ajax 实现加载数据前动画效果的示例代码
  • jsp页面中的代码执行加载顺序介绍
  • gdb没有加载源代码
  • 无刷新动态加载数据与滚动条加载适合评论的jquery代码
  • jquery 滚动加载图片效果的实现代码
  • Jquery EasyUI中弹出确认对话框以及加载效果示例代码
  • jquery动态加载与去除js代码的三种方法
  • jquery 图片预加载代码一例
  • jquery加载图片自适应大小的代码
  • jquery动态加载select下拉框实例代码
  • 显示任何进程加载的DLL文件的代码
  • jquery动态加载select下拉框示例代码
  • Android 异步加载图片的实例代码
  •  
    本站(WWW.)旨在分享和传播互联网科技相关的资讯和技术,将尽最大努力为读者提供更好的信息聚合和浏览方式。
    本站(WWW.)站内文章除注明原创外,均为转载、整理或搜集自网络。欢迎任何形式的转载,转载请注明出处。












  • 相关文章推荐
  • Linux下指定运行时加载动态库路径及shell下执行程序默认路径
  • 请教一下Linux的动态库加载方式(是启动加载还是运行加载?)
  • struts+spring+hibernate+jquery实现分页功能的几个基本类介绍(异步加载)
  • 在线等待!请文中怎么使用WebLogc的类加载器加载一个类?
  • driver的静态加载和动态加载占用内存问题
  • 可执行程序加载动态库 和 动态库加载动态库 的动态库初始化的问题
  • vmware下加载了一个虚拟软驱镜像,如果设置第一启动项为软驱的话,软驱能正常加载运行。但如果我第一启动项不设为软驱,正常启动fedora12的话。
  • usbhid妨碍了系统自动加载我的usb驱动程序,求教解决 (主要是加载后设备的驱动被认作usbhid)
  • 问问lib加载的问题
  • linux生成(加载)动态库静态库和加载示例方法
  • 使用非root用户加载模块出错
  • linux网卡驱动加载异常
  • 要写一个Linux下的elf加载器需要哪些知识?
  • 加载混杂设备
  • js/css文件加载管理 uetjs
  • 如何加载硬盘?
  • 为何每次重启都要重新加载驱动模块?
  • JS文件加载优化 ControlJS
  • jQuery数据延迟加载插件 DataLazyLoad
  • 问个动态库加载的问题
  • 浏览器窗口滚动加载数据采用异步形式从后台加载数据


  • 站内导航:


    特别声明:169IT网站部分信息来自互联网,如果侵犯您的权利,请及时告知,本站将立即删除!

    ©2012-2021,,E-mail:www_#163.com(请将#改为@)

    浙ICP备11055608号-3