プレゼンテーションテーマ
プレゼンテーションテーマは、デザイン要素のプロパティを定義します。プレゼンテーションテーマを選択すると、視覚要素とそのプロパティの特定のセットを基本的に選んでいることになります。
PowerPointでは、テーマは色、フォント、背景スタイル、および効果を含みます。
テーマカラーを変更する
パワーポイントテーマは、スライド上のさまざまな要素に特定の色のセットを使用します。色が気に入らない場合は、テーマの新しい色を適用することでそれらを変更できます。新しいテーマカラーを選択できるようにするため、Aspose.SlidesはSchemeColor列挙の下に値を提供します。
このPHPコードは、テーマのアクセント色を変更する方法を示しています:
$pres = new Presentation();
try {
$shape = $pres->getSlides()->get_Item(0)->getShapes()->addAutoShape(ShapeType::Rectangle, 10, 10, 100, 100);
$shape->getFillFormat()->setFillType(FillType::Solid);
$shape->getFillFormat()->getSolidFillColor()->setSchemeColor(SchemeColor->Accent4);
} finally {
if (!java_is_null($pres)) {
$pres->dispose();
}
}
このようにして結果カラーの実効値を決定できます:
$fillEffective = $shape->getFillFormat()->getEffective();
$effectiveColor = $fillEffective->getSolidFillColor();
echo(sprintf("Color [A=%d, R=%d, G=%d, B=%d]", $effectiveColor->getAlpha(), $effectiveColor->getRed(), $effectiveColor->getGreen(), $effectiveColor->getBlue()));
色変更操作を示すために、別の要素を作成し、(最初の操作から)アクセント色をそれに割り当てます。次に、テーマ内の色を変更します:
$otherShape = $pres->getSlides()->get_Item(0)->getShapes()->addAutoShape(ShapeType::Rectangle, 10, 120, 100, 100);
$otherShape->getFillFormat()->setFillType(FillType::Solid);
$otherShape->getFillFormat()->getSolidFillColor()->setSchemeColor(SchemeColor->Accent4);
$pres->getMasterTheme()->getColorScheme()->getAccent4()->setColor(java("java.awt.Color")->RED);
新しい色は両方の要素に自動的に適用されます。
追加パレットからテーマカラーを設定する
主テーマカラー(1)に輝度変換を適用すると、追加パレット(2)の色が形成されます。その後、それらのテーマ色を設定したり取得したりできます。
1 - 主テーマカラー
2 - 追加パレットの色。
このPHPコードは、主テーマカラーから追加パレットの色を取得し、それを形状に使用する操作を示しています:
$presentation = new Presentation();
try {
$slide = $presentation->getSlides()->get_Item(0);
# アクセント4
$shape1 = $slide->getShapes()->addAutoShape(ShapeType::Rectangle, 10, 10, 50, 50);
$shape1->getFillFormat()->setFillType(FillType::Solid);
$shape1->getFillFormat()->getSolidFillColor()->setSchemeColor(SchemeColor->Accent4);
# アクセント4, 明るい80%
$shape2 = $slide->getShapes()->addAutoShape(ShapeType::Rectangle, 10, 70, 50, 50);
$shape2->getFillFormat()->setFillType(FillType::Solid);
$shape2->getFillFormat()->getSolidFillColor()->setSchemeColor(SchemeColor->Accent4);
$shape2->getFillFormat()->getSolidFillColor()->getColorTransform()->add(ColorTransformOperation->MultiplyLuminance, 0.2);
$shape2->getFillFormat()->getSolidFillColor()->getColorTransform()->add(ColorTransformOperation->AddLuminance, 0.8);
# アクセント4, 明るい60%
$shape3 = $slide->getShapes()->addAutoShape(ShapeType::Rectangle, 10, 130, 50, 50);
$shape3->getFillFormat()->setFillType(FillType::Solid);
$shape3->getFillFormat()->getSolidFillColor()->setSchemeColor(SchemeColor->Accent4);
$shape3->getFillFormat()->getSolidFillColor()->getColorTransform()->add(ColorTransformOperation->MultiplyLuminance, 0.4);
$shape3->getFillFormat()->getSolidFillColor()->getColorTransform()->add(ColorTransformOperation->AddLuminance, 0.6);
# アクセント4, 暗い25%
$shape4 = $slide->getShapes()->addAutoShape(ShapeType::Rectangle, 10, 190, 50, 50);
$shape4->getFillFormat()->setFillType(FillType::Solid);
$shape4->getFillFormat()->getSolidFillColor()->setSchemeColor(SchemeColor->Accent4);
$shape4->getFillFormat()->getSolidFillColor()->getColorTransform()->add(ColorTransformOperation->MultiplyLuminance, 0.6);
$shape4->getFillFormat()->getSolidFillColor()->getColorTransform()->add(ColorTransformOperation->AddLuminance, 0.4);
# アクセント4, 暗い50%
$shape5 = $slide->getShapes()->addAutoShape(ShapeType::Rectangle, 10, 250, 50, 50);
$shape5->getFillFormat()->setFillType(FillType::Solid);
$shape5->getFillFormat()->getSolidFillColor()->setSchemeColor(SchemeColor->Accent4);
$shape5->getFillFormat()->getSolidFillColor()->getColorTransform()->add(ColorTransformOperation->MultiplyLuminance, 0.75);
# アクセント4, 暗い75%
$shape6 = $slide->getShapes()->addAutoShape(ShapeType::Rectangle, 10, 310, 50, 50);
$shape6->getFillFormat()->setFillType(FillType::Solid);
$shape6->getFillFormat()->getSolidFillColor()->setSchemeColor(SchemeColor->Accent4);
$shape6->getFillFormat()->getSolidFillColor()->getColorTransform()->add(ColorTransformOperation->MultiplyLuminance, 0.5);
$presentation->save($path . "example_accent4.pptx", SaveFormat::Pptx);
} finally {
if (!java_is_null($presentation)) {
$presentation->dispose();
}
}
テーマフォントを変更する
テーマ及びその他の目的のためにフォントを選択できるようにするため、Aspose.Slidesは次の特別な識別子を使用します(PowerPointで使用されるものに似ています):
- +mn-lt - ボディフォントラテン(マイナーラテンフォント)
- +mj-lt - ヘッディングフォントラテン(メジャーラテンフォント)
- +mn-ea - ボディフォント東アジア(マイナー東アジアフォント)
- +mj-ea - ボディフォント東アジア(メジャー東アジアフォント)
このPHPコードは、テーマ要素にラテンフォントを割り当てる方法を示しています:
$shape = $pres->getSlides()->get_Item(0)->getShapes()->addAutoShape(ShapeType::Rectangle, 10, 10, 100, 100);
$paragraph = new Paragraph();
$portion = new Portion("テーマテキストフォーマット");
$paragraph->getPortions()->add($portion);
$shape->getTextFrame()->getParagraphs()->add($paragraph);
$portion->getPortionFormat()->setLatinFont(new FontData("+mn-lt"));
このPHPコードは、プレゼンテーションテーマフォントを変更する方法を示しています:
$pres->getMasterTheme()->getFontScheme()->getMinor()->setLatinFont(new FontData("Arial"));
すべてのテキストボックス内のフォントが更新されます。
ヒント
パワーポイントフォントを確認することをお勧めします。テーマの背景スタイルを変更する
デフォルトでは、パワーポイントアプリは12個のプリセット背景を提供しますが、そのうちの3つだけが一般的なプレゼンテーションに保存されます。
たとえば、パワーポイントアプリでプレゼンテーションを保存した後、以下のPHPコードを実行して、プレゼンテーション内のプリセット背景の数を確認できます:
$pres = new Presentation("pres.pptx");
try {
$numberOfBackgroundFills = $pres->getMasterTheme()->getFormatScheme()->getBackgroundFillStyles()->size();
echo("テーマの背景塗りつぶしスタイルの数は " . $numberOfBackgroundFills);
} finally {
if (!java_is_null($pres)) {
$pres->dispose();
}
}
このPHPコードは、プレゼンテーションの背景を設定する方法を示しています:
$pres->getMasters()->get_Item(0)->getBackground()->setStyleIndex(2);
インデックスガイド: 0は塗りつぶしなしです。インデックスは1から始まります。
ヒント
パワーポイント背景を確認することをお勧めします。テーマ効果を変更する
パワーポイントテーマは通常、各スタイル配列に3つの値を含みます。それらの配列は、これらの3つの効果:微妙な、中程度、強烈に結合されます。たとえば、次の図は、効果が特定の形状に適用されたときの結果です:
FormatSchemeクラスの3つのプロパティ(FillStyles, LineStyles, EffectStyles)を使用すると、テーマ内の要素を変更できます(PowerPointのオプションよりもさらに柔軟に)。
このPHPコードは、要素の一部を変更することでテーマ効果を変更する方法を示しています:
$pres = new Presentation("Subtle_Moderate_Intense.pptx");
try {
$pres->getMasterTheme()->getFormatScheme()->getLineStyles()->get_Item(0)->getFillFormat()->getSolidFillColor()->setColor(java("java.awt.Color")->RED);
$pres->getMasterTheme()->getFormatScheme()->getFillStyles()->get_Item(2)->setFillType(FillType::Solid);
$pres->getMasterTheme()->getFormatScheme()->getFillStyles()->get_Item(2)->getSolidFillColor()->setColor(java("java.awt.Color")->GREEN);
$pres->getMasterTheme()->getFormatScheme()->getEffectStyles()->get_Item(2)->getEffectFormat()->getOuterShadowEffect()->setDistance(10.0);
$pres->save("Design_04_Subtle_Moderate_Intense-out.pptx", SaveFormat::Pptx);
} finally {
if (!java_is_null($pres)) {
$pres->dispose();
}
}
塗りつぶし色、塗りつぶしタイプ、シャドウ効果などの結果変更: