0

我想将一些文本和字体详细信息(例如字体、大小)传递给 dll 调用

我想以像素为单位检索文本的宽度和高度

它必须在 dll 中,因为它是从 Classic ASP 调用的

我知道有诸如 TextMetrics 之类的东西,但不知道如何将其包装在 COM 对象中。

我该怎么做(请在 C# 中)?

4

3 回答 3

4

也许,您可以使用 Graphics.MeasureString。

将文本和字体作为 System.Drawing.Font 对象传递。该方法返回一个 System.Drawing.SizeF 对象。

希望能帮助到你。

再见!

抱歉,已编辑:(好的..巨大的)

using System;
using System.Drawing;

namespace MeasureSize
{
    class Program
    {
        static void Main(string[] args)
        {
            var size = GetTextSize("This is a test!", "Arial", 10, "normal", "bold");

            Console.Write("Width: {0} / Heigth: {1}", size);
            Console.ReadKey();
        }

        public static object[] GetTextSize(object value, object fontFamily, object size, object style, object weight)
        {
            if (value == null || fontFamily == null || size == null) { return new object[0]; }

            var result = new object[2];
            var text = value.ToString();
            var font = default(Font);
            var composedStyle = string.Concat(style ?? "normal", "+", weight ?? "normal").ToLowerInvariant();
            var fontStyle = default(FontStyle);

            switch (composedStyle)
            {
                case "normal+normal": fontStyle = FontStyle.Regular | FontStyle.Regular; break;
                case "normal+bold": fontStyle = FontStyle.Regular | FontStyle.Bold; break;
                case "italic+normal": fontStyle = FontStyle.Italic | FontStyle.Regular; break;
                case "italic+bold": fontStyle = FontStyle.Italic | FontStyle.Bold; break;
            }

            font = new Font(fontFamily.ToString(), Convert.ToSingle(size), fontStyle, GraphicsUnit.Pixel);

            using (var image = new Bitmap(1, 1))
            using (var graphics = Graphics.FromImage(image))
            {
                var sizeF = graphics.MeasureString(text, font);

                result[0] = Math.Round((decimal)sizeF.Width, 0, MidpointRounding.ToEven);
                result[1] = Math.Round((decimal)sizeF.Height, 0, MidpointRounding.ToEven);
            }

            return result;
        }
    }
}
于 2012-08-01T12:54:06.423 回答
1

可能是那样(在 ASP 中工作)

public static SizeF MeasureString(string s, Font font)
{
    SizeF result;
    using (var image = new Bitmap(1, 1))
    {
        using (var g = Graphics.FromImage(image))
        {
            result = g.MeasureString(s, font);
        }
    }

    return result;
}
于 2012-08-01T12:55:21.367 回答
0

这些 msdn 链接应该为您提供所需的内容:http: //msdn.microsoft.com/en-us/library/y4xdbe66.aspxhttp://msdn.microsoft.com/en-us/library/9bt8ty58 .aspx

于 2012-08-01T13:03:43.153 回答