3

我正在尝试编写一个应该获取字体链接的 Web 应用程序,并返回以发送的字体格式编写的内容的图像。

我正在打开一个读取字体文件的流,并将文件的 InPtr 发送到 PrivateFontCollection.AddMemoryFont,这样我以后可以将它与一些图形对象一起使用。当我使用有效的 .ttf 文件时,一切正常,但每当我尝试使用 .woff 字体文件时,我得到 AddMemoryFont 行的“System.IO.FileNotFoundException: File not found”,即使我可以看到该文件是阅读没有错误。

我尝试使用在线转换器将 .woff 文件转换为 .ttf,当我在新的 .ttf 文件上运行我的代码时,它运行良好。

使用 .woff 文件是否有问题,或者我是否需要更改某些内容才能使其正常工作?

WebClient client = new WebClient();
Stream stream = client.OpenRead("http://www.drivehq.com/file/df.aspx/shareID2129391/fileID59377155/arial.ttf"); // Works fine.
//Stream stream = client.OpenRead("http://themes.googleusercontent.com/static/fonts/kiteone/v1/VNHoD96LpZ9rGZTwjozAOvesZW2xOQ-xsNqO47m55DA.woff"); // Doesn't work.
PrivateFontCollection fonts;
FontFamily family = LoadFontFamily(stream, out fonts);

public static FontFamily LoadFontFamily(Stream stream, out PrivateFontCollection fontCollection)
{
    byte[] buffer = null;
    using (MemoryStream ms = new MemoryStream())
    {
        int count = 0;
        do
        {
            byte[] buf = new byte[1024];
            count = stream.Read(buf, 0, 1024);
            ms.Write(buf, 0, count);
        } while (stream.CanRead && count > 0);
        buffer = ms.ToArray();
    }

    var handle = System.Runtime.InteropServices.GCHandle.Alloc(buffer, System.Runtime.InteropServices.GCHandleType.Pinned);

    try
    {
        var ptr = System.Runtime.InteropServices.Marshal.UnsafeAddrOfPinnedArrayElement(buffer, 0);
        fontCollection = new PrivateFontCollection();
        fontCollection.AddMemoryFont(ptr, buffer.Length);
        return fontCollection.Families[0];
    }
    finally
    {
        handle.Free();
    }
}
4

1 回答 1

0

.NET Framework 不支持导入 WOFF 字体,就像 Windows XP/Vista/7/8 一样。

您必须使用外部工具将其转换为 TTF并导入 TTF。

于 2013-03-05T16:47:44.973 回答