Java におけるカスタム PowerPoint フォント

カスタムフォントのロード

Aspose.Slides は、フォントをインストールすることなく、プレゼンテーションで描画されるフォントをロードできます。フォントはカスタムディレクトリからロードされます。

  1. FontsLoader クラスのインスタンスを作成し、loadExternalFonts メソッドを呼び出します。
  2. 描画されるプレゼンテーションをロードします。
  3. FontsLoader クラスで キャッシュをクリア します。

この Java コードはフォントのロードプロセスを示しています:

// フォントを探すフォルダ
String[] folders = new String[] { externalFontsDir };

// カスタムフォントディレクトリのフォントをロード
FontsLoader.loadExternalFonts(folders);

// いくつかの作業を行い、プレゼンテーション/スライドをレンダリングします
Presentation pres = new Presentation("DefaultFonts.pptx");
try {
    pres.save("NewFonts_out.pptx", SaveFormat.Pptx);
} finally {
    if (pres != null) pres.dispose();

    // フォントキャッシュをクリア
    FontsLoader.clearCache();
}

カスタムフォントフォルダーを取得

Aspose.Slides は、フォントフォルダーを見つけるための getFontFolders メソッドを提供します。このメソッドは、LoadExternalFonts メソッドを通じて追加されたフォルダーとシステムフォントフォルダーを返します。

この Java コードは、getFontFolders の使用方法を示しています:

// この行はフォントファイルが検索されるフォルダを出力します。
// これは LoadExternalFonts メソッドおよびシステムフォントフォルダーを通じて追加されたフォルダーです。
String[] fontFolders = FontsLoader.getFontFolders();

プレゼンテーションで使用するカスタムフォントを指定する

Aspose.Slides は、プレゼンテーションで使用される外部フォントを指定するための setDocumentLevelFontSources プロパティを提供します。

この Java コードは、setDocumentLevelFontSources プロパティの使用方法を示しています:

byte[] memoryFont1 = Files.readAllBytes("customfonts/CustomFont1.ttf");
byte[] memoryFont2 = Files.readAllBytes("customfonts/CustomFont2.ttf");

LoadOptions loadOptions = new LoadOptions();
loadOptions.getDocumentLevelFontSources().setFontFolders(new String[] { "assets/fonts", "global/fonts" });
loadOptions.getDocumentLevelFontSources().setMemoryFonts(new byte[][] { memoryFont1, memoryFont2 });

Presentation pres = new Presentation("MyPresentation.pptx", loadOptions);
try {
    // プレゼンテーションで作業します
    // CustomFont1、CustomFont2、assets\fonts および global\fonts フォルダーとそのサブフォルダーからのフォントがプレゼンテーションで利用可能です
} finally {
    if (pres != null) pres.dispose();
}

フォントを外部で管理する

Aspose.Slides は、バイナリデータから外部フォントをロードするための loadExternalFont(byte[] data) メソッドを提供します。

この Java コードは、バイト配列フォントのロードプロセスを示しています:

FontsLoader.loadExternalFont(Files.readAllBytes(Paths.get("ARIALN.TTF")));
FontsLoader.loadExternalFont(Files.readAllBytes(Paths.get("ARIALNBI.TTF")));
FontsLoader.loadExternalFont(Files.readAllBytes(Paths.get("ARIALNI.TTF")));

try
{
    Presentation pres = new Presentation("");
    try {
        // プレゼンテーションのライフタイム中にロードされた外部フォント
    } finally {
        
    }
}
finally
{
    FontsLoader.clearCache();
}