winform或wpf是否有.net免费库可以控制选择图像中的特定区域,然后我们可以将这些区域保存为不同的图像。如果我们可以在图像上使用鼠标绘制网格,然后将该网格另存为单独的图像,那就太棒了。
答案 0 :(得分:0)
这不是很难。在Winforms中,这是一个最小的例子:
GraphicsPath GP = null;
List<Point> points = new List<Point>();
private void pictureBox1_MouseDown(object sender, MouseEventArgs e)
{
points.Clear();
points.Add(e.Location);
}
private void pictureBox1_MouseUp(object sender, MouseEventArgs e)
{
GP = new GraphicsPath();
GP.AddClosedCurve(points.ToArray());
}
private void pictureBox1_MouseMove(object sender, MouseEventArgs e)
{
if (e.Button == System.Windows.Forms.MouseButtons.Left)
{
points.Add(e.Location);
pictureBox1.Invalidate();
}
}
private void pictureBox1_Paint(object sender, PaintEventArgs e)
{
if (points.Count > 1)
e.Graphics.DrawCurve(Pens.Orange, points.ToArray(), 0.5f);
}
private void cb_clearRegion_Click(object sender, EventArgs e)
{
points.Clear();
pictureBox1.Region = null;
}
private void cb_SaveRegion_Click(object sender, EventArgs e)
{
Rectangle cr = pictureBox1.ClientRectangle;
using (Bitmap bmp = new Bitmap(cr.Width, cr.Height))
using (Graphics G = Graphics.FromImage(bmp))
{
G.SetClip(GP);
G.DrawImage(pictureBox1.Image, Point.Empty);
bmp.Save(@"D:\xyz.png", ImageFormat.Png);
}
}
请注意,这不会使用放大或缩小,并创建所有与原始尺寸相同的位图,只是在区域外的任何地方都是透明的。
使用ScaleTransform
和Point UnZoom(Point)
函数实现azoom非常简单;只要问你是否需要它..
如果您想添加“移动”模式,可以使用MouseMove
并重新计算所有Points
。
如果您想要多个区域,则必须收集List<T>
并连续使用它们来创建输出。
如果您确实只想保存网格而没有图片,请使用G.DrawPath(..)
代替DrawImage()
!
另请注意,您可能希望使用各种绘图工具(如线条,矩形等)来优化选择。您可以在路径中逐步添加数字..