学习FotoVision 进行C# colorMatrix 对图片的处理 : 亮度调整 抓屏 翻转 随鼠标画矩形...

0.FotoVision下载地址

http://www.microsoft.com/downloads/details.aspx?FamilyId=D4738DCA-E95C-4D4F-BF32-00A865006C73&displaylang=en

 

 1.图片亮度处理

private void trackBar1_ValueChanged(object sender, EventArgs e)
{
    //this.numericUpDown1.Value = this.trackBar1.Value;

    int percent = this.trackBar1.Value;
    Single v = 0.006F * percent;
    Single[][] matrix = {
        new Single[] { 1, 0, 0, 0, 0 },
        new Single[] { 0, 1, 0, 0, 0 },
        new Single[] { 0, 0, 1, 0, 0 },
        new Single[] { 0, 0, 0, 1, 0 },
        new Single[] { v, v, v, 0, 1 }
    };
    System.Drawing.Imaging.ColorMatrix cm = new System.Drawing.Imaging.ColorMatrix(matrix);
    System.Drawing.Imaging.ImageAttributes attr = new System.Drawing.Imaging.ImageAttributes();
    attr.SetColorMatrix(cm);
    //Image tmp
    Image tmp = Image.FromFile(@"F:\\ImageManager\images\1.jpg");
    Graphics g = Graphics.FromImage(tmp);
    try
    {
        Rectangle destRect = new Rectangle(0, 0, tmp.Width, tmp.Height);
        g.DrawImage(tmp, destRect, 0, 0, tmp.Width, tmp.Height, GraphicsUnit.Pixel, attr);
    }
    finally
    {
        g.Dispose();
    }
    this.pictureBox1.Image = tmp;
}

 

2.抓屏将生成的图片显示在pictureBox
private void button1_Click(object sender, EventArgs e)
 {
     Image myImage = new Bitmap(Screen.PrimaryScreen.Bounds.Width, Screen.PrimaryScreen.Bounds.Height);
     Graphics g = Graphics.FromImage(myImage);
     g.CopyFromScreen(new Point(0, 0), new Point(0, 0), new Size(Screen.PrimaryScreen.Bounds.Width, Screen.PrimaryScreen.Bounds.Height));
     IntPtr dc1 = g.GetHdc();
     g.ReleaseHdc(dc1);
     g.Dispose();
     this.pictureBox1.Image = myImage;
}

3.翻转
private void button3_Click(object sender, EventArgs e)
{
    Image tmp = this.pictureBox1.Image;
    tmp.RotateFlip(RotateFlipType.Rotate90FlipNone);
    this.pictureBox1.Image = tmp;
}

 

4.跟随鼠标在 pictureBox的图片上画矩形
private int intStartX = 0;
private int intStartY = 0;
private void pictureBox1_MouseDown(object sender, MouseEventArgs e)
{
    if (isMouseDraw)
    {
        isMouseDraw = false;
        //MessageBox.Show("禁用随鼠标画图");
    }
    else
    {
        isMouseDraw = true;
        //MessageBox.Show("启用随鼠标画图");
    }

    if (isMouseDraw)
    {
        intStartX = e.X;
        intStartY = e.Y;
    }
    else
    {
        intStartX = 0;
        intStartY = 0;
    }
}
private void pictureBox1_MouseMove(object sender, MouseEventArgs e)
{
    if (isMouseDraw)
    {
        try
        {
            Image tmp = Image.FromFile(@"F:\\ImageManager\images\1.jpg");
            Graphics g = Graphics.FromImage(tmp);
            Brush brush = new SolidBrush(Color.Red);
            Pen pen = new Pen(brush, 1);
            pen.DashStyle = DashStyle.Solid;
            g.DrawRectangle(pen, new Rectangle(intStartX > e.X ? e.X : intStartX, intStartY > e.Y ? e.Y : intStartY, Math.Abs(e.X - intStartX), Math.Abs(e.Y - intStartY)));
            g.Dispose();

            this.pictureBox1.Image = tmp;
        }
        catch (Exception ex)
        {
            ex.ToString();
        }
    }
}

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值