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

Pai*_*iya 2 c# gdi drawtext

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

在此处输入图片说明

目前我想在里面绘制一个文本并拟合一个矩形。

在此处输入图片说明

请帮忙。

C.E*_*uis 5

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

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);
    }
}
Run Code Online (Sandbox Code Playgroud)