Aspose.Slides for Java 15.1.0における公開APIと後方互換性のない変更
Contents
[
Hide
]
いくつかの画像の箇条書きやWordArtオブジェクトに既知の問題があります。これらはAspose.Slides for Java 15.2.0で修正される予定です。
公開APIの変更
フォント置き換え機能が追加されました
プレゼンテーション全体でフォントをグローバルに置き換える機能と、レンダリング用に一時的な置き換え機能が追加されました。
Presentationクラスの新しいメソッドgetFontsManager()が導入されました。FontsManagerクラスには次のメンバーがあります:
IFontSubstRuleCollection getFontSubstRuleList() メソッド
これは、レンダリング中にフォントを置き換えるために使用されるIFontSubstRuleインスタンスのコレクションです。 IFontSubstRuleには、IFontDataインターフェイスを実装するgetSourceFont()およびgetDestFont()メソッドと、置き換えの条件を選択できるgetReplaceFontCondition()メソッドがあります(「WhenInaccessible」または「Always」)。
IFontData[] getFonts() メソッドを使用して、現在のプレゼンテーションで使用されているすべてのフォントを取得できます。
replaceFont(…) メソッドを使用して、プレゼンテーション内のフォントを永続的に置き換えることができます。
以下の例は、プレゼンテーション内のフォントを置き換える方法を示しています:
Presentation pres = new Presentation("PresContainsArialFont.pptx");
IFontData sourceFont = new FontData("Arial");
IFontData destFont = new FontData("Times New Roman");
pres.getFontsManager().replaceFont(sourceFont, destFont);
pres.save("PresContainsTimesNoewRomanFont.pptx", SaveFormat.Pptx);
もう一つの例では、アクセスできないときのレンダリング用のフォント置き換えを示します:
Presentation pres = new Presentation("PresContainsSomeRareFontFont.pptx");
IFontData sourceFont = new FontData("SomeRareFont");
IFontData destFont = new FontData("Arial");
IFontSubstRule fontSubstRule = new FontSubstRule(
sourceFont, destFont, FontSubstCondition.WhenInaccessible);
IFontSubstRuleCollection fontSubstRuleCollection = new FontSubstRuleCollection();
fontSubstRuleCollection.add(fontSubstRule);
pres.getFontsManager().setFontSubstRuleList(fontSubstRuleCollection);
// SomeRareFontがアクセスできないときにArialフォントが使用されます
pres.getSlides().get_Item(0).getThumbnail(1, 1);