我想从图像中裁剪一个旋转的矩形。我想做的就是这样:
System.Windows.Shapes.Rectangle rect = new System.Windows.Shapes.Rectangle();
// rect.RadiusX = ...; // rect.Height = ....; ..
rect.RenderTransform = new RotateTransform(angle);
然后从图像中裁剪该矩形。我发现的所有代码都裁剪了一个系统。Windows。从图像中绘制矩形。但是,我需要裁剪一个system.windows.shapes.形状应用旋转变换,该变换不适用于System.Windows.Windows.Drawing Rectangle.
,因为您的问题缺乏一些代码。因此,据我了解,给定的方法将为您提供适当的结果。如果答案没有达到您的标记,请更多地详细说明问题声明。
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;
}
希望会有所帮助。