0

我想DrawString用不同大小的字体垂直对齐文本。基本上,我试图在报告上打印销售价格,其中美分的字体小于美元。这是在报告引擎中,我需要写入图像,而不是 Windows 窗体,所以我相信我必须使用DrawString而不是使用TextRenderer.

我找到了各种解释如何在基线上绘制文本的文章。这些似乎工作正常,尽管我发现不同大小的相同字体可能会超出一个像素。我想我可以接受这些并研究如何使用字体的上升设计信息进行对齐,但我没有成功:-(

有没有人有一些有用的示例代码?

更新 1:更改总数以反映我希望顶部对齐而不是垂直对齐。我希望在 Arial 20 中打印的美元值的顶部与 Arial 14 中美分值的顶部水平对齐。我尝试过的所有字体都有问题。

在下图中,我使用的是 Arial Black。

顶部对齐文本

您可以看到较大的字体在红线和 1 的顶部之间存在间隙,但当它到达较小的字体时,该间隙就会消失。

宋体 使用 Arial,它从行上方开始。

维达纳 我认为这个是 Verdana,它以更大的字体和更大的差距开始。

对于这三个,我使用以下代码:

float offset = myFont.SizeInPoints /
myFont.FontFamily.GetEmHeight(myFont.Style) *
(myFont.FontFamily.GetLineSpacing(myFont.Style) - myFont.FontFamily.GetCellAscent(myFont.Style));
float pixels = e.Graphics.DpiY / 72f * offset;
float baseline = pixels;// (int)(pixels + 0.5f);

PointF renderPt = new PointF(left, y - baseline);
e.Graphics.DrawString("$1", myFont, new SolidBrush(Color.Black), renderPt);

我还使用这个样本作为一些测试的基础。我想如果上升线的绘制方式是准确的,那么我可以简单地调整初始写入点。唉,当你使用更大的字体大小或不同的字体时,上升线绘制不准确,所以我无法走这条路。

我没有使用TextRenderer过,因为我不知道如何让它工作,因为我没有使用 Windows 窗体OnPaint事件并且不知道如何获得适当的图形。时间有点紧迫,但我认为这可能是我的下一个选择。

4

2 回答 2

4

字体是一个继承了许多具有历史基础的物理世界的领域。不幸的是,这并不总是与计算机的工作方式兼容。

例如,物理世界中的字体大小不必等于物理世界中的相同字体大小(没有错字)。以相同的大小获取这些字形:

赫尔维提卡 G 脚本

尽管它们的大小相同(64 磅),但它们的大小并不相等。这与字体的历史方面有关,在物理世界中,字形放置在方形金属板上。指的是这些盘子的大小,而不是上面的字形——它们可以填满整个盘子;或不。基于计算机的字体也是如此。您可以看到字形的边界框是相同的(=字体大小),但它们自身的字形不同。

这通常不是排版或印刷的问题,因为可以快速进行调整以弥补这一点。

在 .net/GDI+ 中绘图,在特殊情况下是另一回事。基线“始终正确”,即:如果您使用基线,则可以保证相同的对齐方式,但在字形的“底部”(不包括其下降)。当您需要从顶部对齐它时,您会遇到问题。

解决这个问题的一种方法(在 GDI+ 中)是实际扫描字形位图以查找顶部的开头,然后使用表示该结果的偏移量绘制字形。使用 BitmapLock 扫描并直接访问缓冲区。

当然,您也可以使用它Bitmap.GetPixel来进行扫描,但是对于大量文本来说,这将是一个非常缓慢的过程。

更新:

我忘了提到一种叫做轴承的东西——在这种情况下,顶部轴承描述了从上升顶部到字形顶部的间隙。不幸的是,您无法通过 GDI/GDI+ 提取它(无需编写字体解析器)。然而,WPF 允许您从字形中提取此信息。

尽管此图中未显示,但它显示了字形的不同部分,包括。与顶部等效的侧轴承:

轴承

有关详细信息,请参阅此链接:http:
//msdn.microsoft.com/en-us/library/system.windows.media.glyphtypeface.aspx

也许这段代码可以提供帮助。我在 VB 中编写了这个并翻译成 C#(所以我希望没有在翻译中丢失)。这将获取一个字形并返回它的位图,并为字形本身提供一个精确的边界框。这种方式只需将生成的位图放在您需要的垂直位置:

它需要 WPF 字体作为参数(使用 WPF 而不是 GDI+ 打开的字体) - 如果您需要帮助,请告诉我:

using System.Windows.Media;
using System.Windows.Media.Imaging;

static class WPFGlyphToGDIPBitmap
{
    public static System.Drawing.Bitmap GetBitmapOfChar(GlyphTypeface gt, _
                                                        char c, _
                                                        double ptSize, _
                                                        float dpi)
    {

        ushort ci = 0;
        if (!gt.CharacterToGlyphMap.TryGetValue(Strings.AscW(c), ci)) {
            if (!gt.CharacterToGlyphMap.TryGetValue(Strings.Asc(c), ci))
                    return null;
        }

        Geometry geo = gt.GetGlyphOutline(ci, ptSize, ptSize);
        GeometryDrawing gDrawing = new GeometryDrawing(System.Windows.Media.Brushes.Black, null, geo);
        DrawingImage geoImage = new DrawingImage(gDrawing);
        geoImage.Freeze();

        DrawingVisual viz = new DrawingVisual();
        DrawingContext dc = viz.RenderOpen;

        dc.DrawImage(geoImage, new Rect(0, 0, geoImage.Width, geoImage.Height));
        dc.Close();

        RenderTargetBitmap bmp = new RenderTargetBitmap(geoImage.Width, _
                                                        geoImage.Height, _
                                                        dpi, dpi, _
                                                        PixelFormats.Pbgra32);
        bmp.Render(viz);

        PngBitmapEncoder enc = new PngBitmapEncoder();
        enc.Frames.Add(BitmapFrame.Create(bmp));

        MemoryStream ms = new MemoryStream();
        enc.Save(ms);
        ms.Seek(0, SeekOrigin.Begin);

        enc = null;
        dc = null;
        viz = null;

        DisposeBitmap(bmp);

        System.Drawing.Bitmap gdiBMP = new System.Drawing.Bitmap(ms);
        ms.Dispose();

        //gdiBMP.Save("c:\test.png", System.Drawing.Imaging.ImageFormat.Png)

        return gdiBMP;

    }

}
public static void DisposeBitmap(RenderTargetBitmap bmp)
{
    if (bmp != null) {
        bmp.Clear();
    }
    bmp = null;
    GC.Collect();
    GC.WaitForPendingFinalizers();
}
于 2012-12-18T03:24:59.930 回答
1
//-----------------------------------------------------------------------------------------------------------------
// MeasureLeading Function
// Measures the amount of white space above a line of text, in pixels. This is accomplished by drawing the text
// onto an offscreen bitmap and then looking at each row of pixels until a non-white pixel is found.
// The y coordinate of that pixel is the result. This represents the offset by which a line of text needs to be
// raised vertically in order to make it top-justified.
//-----------------------------------------------------------------------------------------------------------------

public static int MeasureLeading(string Text, Font Font) {

  Size sz = MeasureText(Text, Font);
  Bitmap offscreen = new Bitmap(sz.Width, sz.Height);
  Graphics ofg = Graphics.FromImage(offscreen);
  ofg.FillRectangle(new SolidBrush(Color.White), new Rectangle(0, 0, sz.Width, sz.Height));
  ofg.DrawString(Text, Font, new SolidBrush(Color.Black), 0, 0, StringFormat.GenericTypographic);

  for (int iy=0; iy<sz.Height; iy++) {
    for (int ix=0; ix<sz.Width; ix++) {
      Color c = offscreen.GetPixel(ix, iy);
      if ((c.R!=255) || (c.G!=255) || (c.B!=255)) return iy;
    }
  }

  return 0;
}

//-----------------------------------------------------------------------------------------------------------------
// MeasureText Method
// TextRenderer.MeasureText always adds about 1/2 em width of white space on the right,
// even when NoPadding is specified. But it returns zero for an empty string.
// To get the true string width, we measure the width of a string containing a single period
// and subtract that from the width of our original string plus a period.
//-----------------------------------------------------------------------------------------------------------------

public static System.Drawing.Size MeasureText(string Text, System.Drawing.Font Font) {
  System.Windows.Forms.TextFormatFlags flags
    = System.Windows.Forms.TextFormatFlags.Left
    | System.Windows.Forms.TextFormatFlags.Top
    | System.Windows.Forms.TextFormatFlags.NoPadding
    | System.Windows.Forms.TextFormatFlags.NoPrefix;
  System.Drawing.Size szProposed = new System.Drawing.Size(int.MaxValue, int.MaxValue);
  System.Drawing.Size sz1 = System.Windows.Forms.TextRenderer.MeasureText(".", Font, szProposed, flags);
  System.Drawing.Size sz2 = System.Windows.Forms.TextRenderer.MeasureText(Text + ".", Font, szProposed, flags);
  return new System.Drawing.Size(sz2.Width - sz1.Width, sz2.Height);
}
于 2015-04-27T14:10:53.463 回答