c# - 从图像上绘制的文本中删除顶部和底部填充

标签 c# .net winforms gdi+

我正在从指定的文本生成图像,但我遇到了一个问题:我无法删除我生成的图像中绘制文本的顶部和底部填充。

我尝试在使用 Graphics.DrawString() 时更改字符串格式,但我只设法删除了左右填充。

private void button1_Click(object sender, EventArgs e)
{
    Font font = new Font("Arial", 52, FontStyle.Regular);
    Image i = GetTextAsImage(textBox1.Text,400, font, Color.Black, Color.LightGray);
    i.Save("myImage.jpeg", ImageFormat.Jpeg);
}

private Image GetTextAsImage(String text, int widthInPixel, Font textFont, Color textColor, Color backColor)
{
    //first, create a dummy bitmap just to get a graphics object
    Image img = new Bitmap(1, 1);
    Graphics drawing = Graphics.FromImage(img);

    //measure the string to see how big the image needs to be
    SizeF textSize = drawing.MeasureString(text, textFont);

    //free up the dummy image and old graphics object
    img.Dispose();
    drawing.Dispose();

    //create a new image of the right size
    img = new Bitmap((int)textSize.Width, textFont.Height);

    drawing = Graphics.FromImage(img);
    drawing.SmoothingMode = SmoothingMode.AntiAlias;
    drawing.TextRenderingHint = System.Drawing.Text.TextRenderingHint.AntiAlias;
    //paint the background
    drawing.Clear(backColor);
    //create a brush for the text
    Brush textBrush = new SolidBrush(textColor);
    drawing.DrawString(text, textFont, textBrush, 0, 0,StringFormat.GenericTypographic);

    drawing.Save();
    textBrush.Dispose();
    drawing.Dispose();
    return img;
}

这是我得到的输出:

Output I get

这是预期的输出:

This is the expected output

最佳答案

我向您推荐一种稍微不同的方法,使用 GraphicsPath类来测量和绘制位图对象上的文本。

优点是 GraphicsPath 类报告其引用的对象将被绘制的实际坐标,以及与特定字体相关的文本大小。
使用 GraphicsPath.GetBounds()RectagleF 结构中返回这些度量值方法。
基本构造函数假定 Pen 大小为 1 像素。

只有一个(小)细节需要注意:GDI+ Bitmap 对象只接受以整数值表示的维度,而所有其他度量均以浮点值表示。
我们需要对舍入进行补偿,但通常只有 ± 1 个像素。

结果示例:

GraphicsPath GetBounds text measure

过程描述:

  • 定义字体系列和大小
  • 将文本字符串添加到 GraphicsPath 对象
  • 获取文本对象的GraphicsPath外接矩形
  • 使用边界矩形大小构建一个 Bitmap 对象
  • 移动世界坐标,使用Graphics.TranslateTransform , 到由边界矩形 Y 位置和 Pen Size 定义的坐标,使用它们的负值:我们需要向后移动该度量。
  • 绘制文本

另请参阅有关 GraphicsPath 和字体的注释:
Properly draw text using Graphics Path

示例代码:

using System.Drawing;
using System.Drawing.Drawing2D;
using System.Drawing.Imaging;
using System.Drawing.Text;


string text = "This is my Text";
Font font = new Font("Arial", 52, FontStyle.Regular, GraphicsUnit.Point);
float penSize = 1f;

using (var path = new GraphicsPath()) {
    path.AddString(text, font.FontFamily, (int)font.Style, font.Size, Point.Empty, StringFormat.GenericTypographic);

    RectangleF textBounds = path.GetBounds();

    using (var bitmap = new Bitmap((int)textBounds.Width, (int)textBounds.Height, PixelFormat.Format32bppArgb))
    using (var g = Graphics.FromImage(bitmap)) 
    using (var brush = new SolidBrush(Color.LightGreen)) {
        g.SmoothingMode = SmoothingMode.AntiAlias;
        // When rendering without a GraphicsPath object
        //g.TextRenderingHint = TextRenderingHint.ClearTypeGridFit;
        g.Clear(Color.Black);
        g.TranslateTransform(-(textBounds.X + penSize), -(textBounds.Y + penSize));
        g.FillPath(brush, path);
        
        bitmap.Save("[Image Path]", ImageFormat.Png);
        // Or: return (Bitmap)bitmap.Clone();
        // Or: return bitmap; declaring the bitmap without a using statement
    }
}

关于c# - 从图像上绘制的文本中删除顶部和底部填充,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/54380214/

相关文章:

c# - 在 C# 中显示多行静态文本的最佳方式?

.net - Cocoa Core Data 新手指南

c# - 无法加载文件或程序集 'mysql.data,' 版本=6.7.4.0

c# - 验证或验证事件?

c# - 改变我的命名空间是一件好事还是必要的?

c# - 启动外部应用程序并在任务栏上最大化(全屏)

c# - 带试用期的 PayPal 定期付款

c# - 如何在 C# 中进行并发 API 调用?

c# - 为什么 C# 编译器不捕获 InvalidCastException

c# - 在打开列标识的情况下插入行时使用 SqlCeCommandBuilder 时出错