タイプ1フォントのグリフとメトリック| .NET
Contents
[
Hide
Show
]フォントメトリックを取得します
フォントメトリックには、ascender、ascender、typoascender、typodescender、unitsperemなどの情報が含まれています。 .NET APIのAspose.Fontは、次のサンプルコードを使用してType1フォントファイルからフォントメトリック情報を読み取ることができます。
FontDefinitionを作成 – Type1 フォントファイルへのフルパス(例:string fontPath = Path.Combine(dataDir, "courier.pfb");)を作成し、.pfb形式のFontFileDefinitionを作成します。次に、FontType.Type1とファイル定義を使用してFontDefinitionを構築します。- フォントを開いてメトリクスにアクセス –
Fontオブジェクトを返すAspose.Font.Font.Open(fd)を使用してフォントを開きます。これをType1Fontにキャストして Type1 固有のプロパティにアクセスし、Ascender、Descender、TypoAscender、TypoDescender、UnitsPerEmなどのメトリクスプロパティを読み取ります。 - メトリクスを使用する – これらの値は、レイアウト計算、スケーリング、またはアプリケーションに必要なタイポグラフィ処理に使用できます。
1// For complete examples and data files, please go to https://github.com/aspose-font/Aspose.Font-for-.NET
2string fileName = dataDir + "courier.pfb"; //Font file name with full path
3
4FontDefinition fd = new FontDefinition(FontType.Type1, new FontFileDefinition("pfb", new FileSystemStreamSource(fileName)));
5Type1Font font = Aspose.Font.Font.Open(fd) as Type1Font;
6
7string name = font.FontName;
8Console.WriteLine("Font name: " + name);
9Console.WriteLine("Glyph count: " + font.NumGlyphs);
10string metrics = string.Format(
11 "Font metrics: ascender - {0}, descender - {1}, typo ascender = {2}, typo descender = {3}, UnitsPerEm = {4}",
12 font.Metrics.Ascender, font.Metrics.Descender,
13 font.Metrics.TypoAscender, font.Metrics.TypoDescender, font.Metrics.UnitsPerEM);
14
15Console.WriteLine(metrics);ラテンシンボルを検出します
.netのAspose.fontでは、Type1フォントファイルからラテンシンボルを検出できます。これは、次のサンプルコードを使用して実現できます。
Type1 フォントを読み込む –
.pfbファイルのFontFileDefinitionを作成し(例:string fontPath = Path.Combine(dataDir, "courier.pfb");)、FontType.Type1とファイル定義を使用してFontDefinitionを構築します。サポートされているラテン文字を検出する – フォントのグリフコレクションを反復処理し、
DecodeToGid()を使用して各 Unicode 文字を内部グリフ ID に変換します。メソッドが 0 以外の ID を返す場合、そのグリフはフォント内に存在し、そのラテン文字がサポートされていることを示します。
1// For complete examples and data files, please go to https://github.com/aspose-font/Aspose.Font-for-.NET
2string fileName = dataDir + "courier.pfb"; //Font file name with full path
3
4FontDefinition fd = new FontDefinition(FontType.Type1, new FontFileDefinition("pfb", new FileSystemStreamSource(fileName)));
5Type1Font font = Aspose.Font.Font.Open(fd) as Type1Font;
6
7bool latinText = true;
8
9
10for (uint code = 65; code < 123; code++)
11{
12 GlyphId gid = font.Encoding.DecodeToGid(code);
13 if (gid == null || gid == GlyphUInt32Id.NotDefId)
14 {
15 latinText = false;
16 }
17}
18
19if (latinText)
20{
21 Console.WriteLine(string.Format("Font {0} supports latin symbols.", font.FontName));
22}
23else
24{
25 Console.WriteLine(string.Format("Latin symbols are not supported by font {0}.", font.FontName));
26}