メソッドでスケール変換(-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();
}
}
サイズが劇的に大きくなることなく、ライン/ペンを優雅に拡大縮小したいと思います。
(さらに、線が非常に大きい場合、複数のモニターにまたがって連続して描画されないことに気付きました。おそらくこれは関連していますか?)