3

我正在从 MetaFile (emf) 中绘制图像,然后在 UserControl 的 OnPaint 中对其应用一些旋转变换。应用这些转换后,如何在屏幕坐标中计算正常的未转换矩形边界框?我需要这个能够将旋转图像的大小调整为 UserControl 的大小。

protected override void OnPaint(PaintEventArgs e)
{
    // rotate around the center of this UserControl
    e.Graphics.TranslateTransform(this.Width / 2.0f, this.Height / 2.0f);
    e.Graphics.RotateTransform(this.Rotation);
    e.Graphics.TranslateTransform(this.Width / -2.0f, this.Height / -2.0f);

    // TODO: now scale so the image so it fits exactly into this UserControl

    // draw the image at the center of this UserControl
    float left = (this.Width - ResourceManager.MyDrawingMetaFile.Width) / 2.0f;
    float top = (this.Height - ResourceManager.MyDrawingMetaFile.Height) / 2.0f;
    e.Graphics.DrawImage(Resources.MyDrawingMetaFile, left, top);
}

这背后的整个想法是我想在 UserControl 中显示旋转的 .emf 文件,并让 emf 绘图始终填充 UserControl 中的可用空间。也许有更好的方法?

我所追求的填充模式/拉伸模式是 Uniform 和 UniformToFill(就像在 WPF 的 Viewbox 中一样)。emf 不应该被扭曲,在 Uniform 模式下,emf 至少在一个维度上完全填充用户控件,没有任何东西被裁剪。在 UniformToFill 中,emf 在两个维度上填充 UserControl,如果纵横比不匹配,则在一个维度上裁剪 emf。

4

2 回答 2

1

如果我理解正确 - 您需要弄清楚旋转如何影响图像的边界框,以便您可以相应地缩放它。

然后你可以这样做:

  1. 将边界框的四个坐标填充到 Point[] 中。
  2. 使用旋转设置矩阵 (.RotateAt)
  3. 让矩阵变换四个点。
  4. 对四个变换后的 X 坐标进行排序,比较新边界框的宽度(排序后的 pts[3].X - pts[0].X)。
  5. 现在您知道如何缩放宽度以获得完美契合。
  6. 对高度也重复步骤 4。
于 2009-11-23T17:19:45.033 回答
0

使用 GDI 的方法是:

BeginPath()
// Draw stuff
EndPath()
PathToRegion()
GetRgnBox()

GDI+ 有等价物 - GraphicsPath 和 Region 类可以做上述

于 2009-11-22T18:44:54.390 回答