形の効果

PowerPointの効果は形を目立たせるために使用できますが、塗りつぶしや輪郭とは異なります。PowerPointの効果を使用して、形の convincing な反射を作成したり、形の輝きを広げたりできます。

shape-effect

  • PowerPointは形に適用できる6つの効果を提供します。1つまたは複数の効果を形に適用できます。

  • 効果の組み合わせによっては他より良く見えるものもあります。このため、PowerPointのプリセットオプションがあります。プリセットオプションは、基本的に2つ以上の効果の見栄えの良い組み合わせです。この方法でプリセットを選択すれば、さまざまな効果をテストまたは組み合わせて素敵な組み合わせを見つけるために時間を無駄にする必要がありません。

Aspose.Slidesは、PowerPointプレゼンテーションの形に同じ効果を適用できるEffectFormatクラスのプロパティとメソッドを提供します。

影効果を適用する

このJavaコードは、長方形に外側の影効果 (OuterShadowEffect) を適用する方法を示しています:

Presentation pres = new Presentation();
try {
    IShape shape = pres.getSlides().get_Item(0).getShapes().addAutoShape(ShapeType.RoundCornerRectangle, 20, 20, 200, 150);

    shape.getEffectFormat().enableOuterShadowEffect();
    shape.getEffectFormat().getOuterShadowEffect().getShadowColor().setColor(Color.DARK_GRAY);
    shape.getEffectFormat().getOuterShadowEffect().setDistance(10);
    shape.getEffectFormat().getOuterShadowEffect().setDirection(45);

    pres.save("output.pptx", SaveFormat.Pptx);
} finally {
    if (pres != null) pres.dispose();
}

反射効果を適用する

このJavaコードは、形に反射効果を適用する方法を示しています:

Presentation pres = new Presentation();
try {
    IShape shape = pres.getSlides().get_Item(0).getShapes().addAutoShape(ShapeType.RoundCornerRectangle, 20, 20, 200, 150);

    shape.getEffectFormat().enableReflectionEffect();
    shape.getEffectFormat().getReflectionEffect().setRectangleAlign(RectangleAlignment.Bottom);
    shape.getEffectFormat().getReflectionEffect().setDirection(90);
    shape.getEffectFormat().getReflectionEffect().setDistance(55);
    shape.getEffectFormat().getReflectionEffect().setBlurRadius(4);

    pres.save("reflection.pptx", SaveFormat.Pptx);
} finally {
    if (pres != null) pres.dispose();
}

光彩効果を適用する

このJavaコードは、形に光彩効果を適用する方法を示しています:

Presentation pres = new Presentation();
try {
    IShape shape = pres.getSlides().get_Item(0).getShapes().addAutoShape(ShapeType.RoundCornerRectangle, 20, 20, 200, 150);

    shape.getEffectFormat().enableGlowEffect();
    shape.getEffectFormat().getGlowEffect().getColor().setColor(Color.MAGENTA);
    shape.getEffectFormat().getGlowEffect().setRadius(15);

    pres.save("glow.pptx", SaveFormat.Pptx);
} finally {
    if (pres != null) pres.dispose();
}

ソフトエッジ効果を適用する

このJavaコードは、形にソフトエッジを適用する方法を示しています:

Presentation pres = new Presentation();
try {
    IShape shape = pres.getSlides().get_Item(0).getShapes().addAutoShape(ShapeType.RoundCornerRectangle, 20, 20, 200, 150);

    shape.getEffectFormat().enableSoftEdgeEffect();
    shape.getEffectFormat().getSoftEdgeEffect().setRadius(15);

    pres.save("softEdges.pptx", SaveFormat.Pptx);
} finally {
    if (pres != null) pres.dispose();
}