1

メソッドでスケール変換(-MSDNGraphics.ScaleTransform()を参照)を使用して線を描画すると、奇妙な動作が見られます。OnPaint()

メソッドに大きなyスケール係数を使用するScaleTransform場合、xスケールが1xより上に設定されていると、線が突然大きくなります。

線を引くペンの幅を-1に設定すると、問題は解決するようですが、非常に細い線は描きたくありません(線は後で印刷する必要があり、1pxは細すぎます)。

問題を示すためのサンプルコードを次に示します。

public class GraphicsTestForm : Form
{
    private readonly float _lineLength = 300;
    private readonly Pen _whitePen;

    private Label _debugLabel;

    public GraphicsTestForm()
    {
        ClientSize = new Size(300, 300);

        Text = @"GraphicsTest";
        SetStyle(ControlStyles.ResizeRedraw, true);

        _debugLabel = new Label
        {
            ForeColor = Color.Yellow,
            BackColor = Color.Transparent
        };
        Controls.Add(_debugLabel);

        _lineLength = ClientSize.Width;
        _whitePen = new Pen(Color.White, 1f); // can change pen width to -1
    }

    protected override void OnPaint(PaintEventArgs e)
    {
        base.OnPaint(e);

        float scaleX = ClientSize.Width / _lineLength;
        const int ScaleY = 100;

        e.Graphics.Clear(Color.Black);

        _debugLabel.Text = @"x-scale: " + scaleX;

        // scale the X-axis so the line exactly fits the graphics area
        // scale the Y-axis by scale factor
        e.Graphics.ScaleTransform(scaleX, ScaleY);

        float y = ClientSize.Height / (ScaleY * 2f);
        e.Graphics.DrawLine(_whitePen, 0, y, _lineLength, y);

        e.Graphics.ResetTransform();
    }
}

サイズが劇的に大きくなることなく、ライン/ペンを優雅に拡大縮小したいと思います。

(さらに、線が非常に大きい場合、複数のモニターにまたがって連続して描画されないことに気付きました。おそらくこれは関連していますか?)

4

2 に答える 2

3

スケールに応じてペンの幅を変更してみてください。

 _whitePen = new Pen(Color.White, 1f / ScaleY); 
 e.Graphics.DrawLine(_whitePen, 0, y, _lineLength, y); 
于 2012-05-07T12:39:58.233 に答える
1

ペン ライン ジオメトリの全体的なスケーリングを補正しただけです。

m_Pen->SetWidth(1.0f);
m_Pen->ScaleTransform(1.0f / ZoomX, 1.0f / ZoomY);
于 2014-08-11T11:48:25.123 に答える