c# PictureBox 的图像上使用鼠标画矩形框

Posted 路萧

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了c# PictureBox 的图像上使用鼠标画矩形框相关的知识,希望对你有一定的参考价值。

   C# 中在图像上画框,通过鼠标来实现主要有四个消息响应函数MouseDown, MouseMove, MouseUp, Paint重绘函数实现。当鼠标键按下时开始画框,鼠标键抬起时画框结束。

Point start; //画框的起始点
Point end,//画框的结束点
bool blnDraw;//判断是否绘制
Rectangel rect;

  鼠标按下响应

private void PictureBox1_MouseDown(object sender, MouseEventArgs e)
{
      start = e.Location;
      Invalidate();
      blnDraw = true;
}

 鼠标移动响应 

 private void PictureBox1_MouseMove(object sender, MouseEventArgs e)
{
    if (blnDraw)
    {
        if (e.Button != MouseButtons.Left)//判断是否按下左键
            return;
        Point tempEndPoint = e.Location; //记录框的位置和大小
        rect.Location = new Point(
        Math.Min(start.X, tempEndPoint.X),
        Math.Min(start.Y, tempEndPoint.Y));
        rect.Size = new Size(
        Math.Abs(start.X - tempEndPoint.X),
        Math.Abs(start.Y - tempEndPoint.Y));
        PictureBox1.Invalidate();
     }
}        

  鼠标键抬起响应

private void PictureBox1_MouseUp(object sender, MouseEventArgs e)
 {
    blnDraw = false; //结束绘制
 }

 重绘响应

private void imageBox1_Paint(object sender, PaintEventArgs e)
{
     if (blnDraw)
     {
         if (imageBox1.Image != null)
         {
             if (rect != null && rect.Width > 0 && rect.Height > 0)
              {
                  e.Graphics.DrawRectangle(new Pen(Color.Red, 3),rect);//重新绘制颜色为红色
               }
          }
      }

}

 注意:在绘制中如果导入的图像的SizeMode为StretchImage时,画框后图像会缩放,导致框有可能不在pictureBox中,需要将PictureBox的FunctionMode 修改为Minimum 便可。

以上是关于c# PictureBox 的图像上使用鼠标画矩形框的主要内容,如果未能解决你的问题,请参考以下文章

我要用C#实现对图像的缩放、鼠标拖曳和灰度拉伸等功能,且图像可能非常大,请问我该使用picturebox控件吗

python+opencv选出视频中一帧再利用鼠标回调实现图像上画矩形框

OpenCV的鼠标操作——用鼠标画矩形(代码解读)

c#中画图与保存

C# picturebox画直线 想把画出来的东西保存成图片

C#怎么让画在picturebox中的图随鼠标滚轮放大缩小?