字体 是数字文档和网页的组成部分,用于定义文本的外观。字体文件用于存储有关字体的信息,例如样式、重量、大小等。在某些情况下,您可能需要操作字体以提取其信息。对于此类场景,在本文中,您将学习如何使用 C++ 从 TrueType、CFF 和 Type1 字体中加载和读取信息。

C++ 字体操作库

Aspose.Font for C++ 是一个强大的字体操作 API,允许您使用 TrueTypeCFFOpenTypeType1EOT 以及 C++ 应用程序中的许多 其他字体。您可以从字体加载、保存和提取编码信息以及使用字形。 API 可以从 下载 部分下载或通过 NuGet 安装。

使用 C++ 加载 CFF、TrueType 和 Type1 字体

Aspose.Font for C++ 允许您从存储介质上的文件加载 CFF、TrueType 和 Type1 字体。以下是加载字体的步骤。

  • 创建一个 FontDefinition 类的对象,通过指定字体的类型,即 TrueType、Type1 等来加载字体。
  • 使用 CffFontTtfFontType1Font 类分别从 FontDefinition 对象打开 CFF、TrueType 和 Type1 字体。

使用 C++ 加载 CFF 字体

以下代码示例显示了如何使用 C++ 加载 CFF 字体。

For complete examples and data files, please go to https://github.com/aspose-font/Aspose.Font-for-C
System::String fileName = dataDir + u"OpenSans-Regular.cff";
//带有完整路径的字体文件名
    
System::SharedPtr<FontDefinition> fd = System::MakeObject<FontDefinition>(Aspose::Font::FontType::CFF, System::MakeObject<FontFileDefinition>(u"cff", System::MakeObject<FileSystemStreamSource>(fileName)));
System::SharedPtr<CffFont> ttfFont = System::DynamicCast_noexcept<Aspose::Font::Cff::CffFont>(Aspose::Font::Font::Open(fd));

使用 C++ 加载 TrueType 字体

以下代码示例显示如何使用 C++ 加载 TrueType 字体。

For complete examples and data files, please go to https://github.com/aspose-font/Aspose.Font-for-C
System::String fileName = dataDir + u"Montserrat-Regular.ttf";
//带有完整路径的字体文件名
    
System::SharedPtr<FontDefinition> fd = System::MakeObject<FontDefinition>(Aspose::Font::FontType::TTF, System::MakeObject<FontFileDefinition>(u"ttf", System::MakeObject<FileSystemStreamSource>(fileName)));
System::SharedPtr<TtfFont> ttfFont = System::DynamicCast_noexcept<Aspose::Font::Ttf::TtfFont>(Aspose::Font::Font::Open(fd));

使用 C++ 加载 Type1 字体

以下代码示例显示了如何使用 C++ 加载 Type1 字体。

For complete examples and data files, please go to https://github.com/aspose-font/Aspose.Font-for-C
System::String fileName = dataDir + u"courier.pfb";
//带有完整路径的字体文件名
    
System::SharedPtr<FontDefinition> fd = System::MakeObject<FontDefinition>(Aspose::Font::FontType::Type1, System::MakeObject<FontFileDefinition>(u"pfb", System::MakeObject<FileSystemStreamSource>(fileName)));
System::SharedPtr<Type1Font> font = System::DynamicCast_noexcept<Aspose::Font::Type1::Type1Font>(Aspose::Font::Font::Open(fd));

使用 C++ 从 TrueType 或 Type1 中提取字体度量

Aspose.Font for C++ 还允许您提取包含 Ascender、Descender、TypoAscender、TypoDescender 和 UnitsPerEm 等信息的字体度量。以下是从 TrueType 或 Type1 字体中检索字体规格的步骤。

  • 创建一个 FontDefinition 类的对象来加载 TrueType 或 Type1 字体。
  • 根据字体类型使用 TtfFontType1Font 类打开字体。
  • 提取字体的度量信息。

使用 C++ 从 TrueType 字体获取字体度量

For complete examples and data files, please go to https://github.com/aspose-font/Aspose.Font-for-C
System::String fileName = dataDir + u"Montserrat-Regular.ttf";
//带有完整路径的字体文件名
    
System::SharedPtr<FontDefinition> fd = System::MakeObject<FontDefinition>(Aspose::Font::FontType::TTF, System::MakeObject<FontFileDefinition>(u"ttf", System::MakeObject<FileSystemStreamSource>(fileName)));
System::SharedPtr<TtfFont> font = System::DynamicCast_noexcept<Aspose::Font::Ttf::TtfFont>(Aspose::Font::Font::Open(fd));
    
System::String name = font->get_FontName();
System::Console::WriteLine(System::String(u"Font name: ") + name);
System::Console::WriteLine(System::String(u"Glyph count: ") + font->get_NumGlyphs());
System::String metrics = System::String::Format(u"Font metrics: ascender - {0}, descender - {1}, typo ascender = {2}, typo descender = {3}, UnitsPerEm = {4}", font->get_Metrics()->get_Ascender(), font->get_Metrics()->get_Descender(), font->get_Metrics()->get_TypoAscender(), font->get_Metrics()->get_TypoDescender(), font->get_Metrics()->get_UnitsPerEM());
    
System::Console::WriteLine(metrics);
    
//从字体中获取 cmap unicode 编码表作为对象 TtfCMapFormatBaseTable 以访问有关符号“A”的字体字形的信息。
//还要检查字体是否有对象 TtfGlyfTable(表'glyf')来访问字形。
System::SharedPtr<Aspose::Font::TtfCMapFormats::TtfCMapFormatBaseTable> cmapTable;
if (font->get_TtfTables()->get_CMapTable() != nullptr)
{
    cmapTable = font->get_TtfTables()->get_CMapTable()->FindUnicodeTable();
}
if (cmapTable != nullptr && font->get_TtfTables()->get_GlyfTable() != nullptr)
{
    System::Console::WriteLine(System::String(u"Font cmap unicode table: PlatformID = ") + cmapTable->get_PlatformId() + u", PlatformSpecificID = " + cmapTable->get_PlatformSpecificId());
    
    //“A”符号的代码
    char16_t unicode = (char16_t)65;
    
    //“A”的字形索引
    uint32_t glIndex = cmapTable->GetGlyphIndex(unicode);
    
    if (glIndex != static_cast<uint32_t>(0))
    {
        //“A”字形
        System::SharedPtr<Glyph> glyph = font->GetGlyphById(glIndex);
        if (glyph != nullptr)
        {
            //打印字形指标
            System::Console::WriteLine(u"Glyph metrics for 'A' symbol:");
            System::String bbox = System::String::Format(System::String(u"Glyph BBox: Xmin = {0}, Xmax = {1}") + u", Ymin = {2}, Ymax = {3}", glyph->get_GlyphBBox()->get_XMin(), glyph->get_GlyphBBox()->get_XMax(), glyph->get_GlyphBBox()->get_YMin(), glyph->get_GlyphBBox()->get_YMax());
            System::Console::WriteLine(bbox);
            System::Console::WriteLine(System::String(u"Width:") + font->get_Metrics()->GetGlyphWidth(System::MakeObject<GlyphUInt32Id>(glIndex)));
        }
    }
}

使用 C++ 从 Type1 字体中提取字体度量

For complete examples and data files, please go to https://github.com/aspose-font/Aspose.Font-for-C
System::String fileName = dataDir + u"courier.pfb";
//带有完整路径的字体文件名
    
System::SharedPtr<FontDefinition> fd = System::MakeObject<FontDefinition>(Aspose::Font::FontType::Type1, System::MakeObject<FontFileDefinition>(u"pfb", System::MakeObject<FileSystemStreamSource>(fileName)));
System::SharedPtr<Type1Font> font = System::DynamicCast_noexcept<Aspose::Font::Type1::Type1Font>(Aspose::Font::Font::Open(fd));
    
System::String name = font->get_FontName();
System::Console::WriteLine(System::String(u"Font name: ") + name);
System::Console::WriteLine(System::String(u"Glyph count: ") + font->get_NumGlyphs());
System::String metrics = System::String::Format(u"Font metrics: ascender - {0}, descender - {1}, typo ascender = {2}, typo descender = {3}, UnitsPerEm = {4}", font->get_Metrics()->get_Ascender(), font->get_Metrics()->get_Descender(), font->get_Metrics()->get_TypoAscender(), font->get_Metrics()->get_TypoDescender(), font->get_Metrics()->get_UnitsPerEM());
    
System::Console::WriteLine(metrics);

结论

在本文中,您学习了如何使用 C++ 加载 CFF、TrueType 和 Type1 字体并提取它们的信息。您可以使用 文档 探索有关 C++ 字体操作 API 的更多信息。