C#GDI如何绘制文本以适应矩形?

时间:2017-07-26 06:11:04

标签: c# gdi drawtext

我们可以轻松地在矩形内绘制文字。

enter image description here

目前我想在里面画一个文字,然后点一个矩形。

enter image description here

请帮忙。

1 个答案:

答案 0 :(得分:2)

我认为最简单的方法是将图形输出缩放到目标矩形:

public static class GraphicsExtensions
{
    public static void DrawStringInside(this Graphics graphics, Rectangle rect, Font font, Brush brush, string text)
    {
        var textSize = graphics.MeasureString(text, font);
        var state = graphics.Save();
        graphics.TranslateTransform(rect.Left, rect.Top);
        graphics.ScaleTransform(rect.Width / textSize.Width, rect.Height / textSize.Height);
        graphics.DrawString(text, font, brush, PointF.Empty);
        graphics.Restore(state);
    }
}