从图像中裁剪 System.Windows.Shapes 矩形
Posted
技术标签:
【中文标题】从图像中裁剪 System.Windows.Shapes 矩形【英文标题】:Cropping a System.Windows.Shapes Rectangle from an image 【发布时间】:2014-02-03 22:00:35 【问题描述】:我想从图像中裁剪出一个旋转的矩形。我想做的是这样的:
System.Windows.Shapes.Rectangle rect = new System.Windows.Shapes.Rectangle();
// rect.RadiusX = ...; // rect.Height = ....; ..
rect.RenderTransform = new RotateTransform(angle);
然后从 Image 中裁剪这个矩形。 我发现的所有代码都从图像中裁剪了 System.Windows.Drawing 矩形。但是,我需要裁剪 System.Windows.Shapes 以应用不适用于 System.Windows.Drawing Rectangle 的旋转变换。
【问题讨论】:
你可以旋转图像,然后裁剪吗? 【参考方案1】:由于您的问题缺少一些代码。据我了解,给定的方法将为您提供适当的结果。如果答案不符合您的要求,请详细说明问题陈述。
public static Bitmap CropRotatedRect(Bitmap source, Rectangle rect, float angle, bool HighQuality)
Bitmap result = new Bitmap(rect.Width, rect.Height);
using (Graphics g = Graphics.FromImage(result))
g.InterpolationMode = HighQuality ? InterpolationMode.HighQualityBicubic : InterpolationMode.Default;
using (Matrix mat = new Matrix())
mat.Translate(-rect.Location.X, -rect.Location.Y);
mat.RotateAt(angle, rect.Location);
g.Transform = mat;
g.DrawImage(source, new Point(0, 0));
return result;
希望对您有所帮助。
【讨论】:
以上是关于从图像中裁剪 System.Windows.Shapes 矩形的主要内容,如果未能解决你的问题,请参考以下文章