Java - PowerPoint 도형에 그림자를 붙이는 방법
따라서 이 기사에서는 Free Spire.Presentation for Java를 사용하여 PowerPoint 모양에 그림자를 붙이는 방법을 소개합니다. 덧붙여서, 프리셋된 그림자의 효과 이외에, 내부의 그림자(InnerShadowEffect)나 외부의 그림자(OuterShadowEffect)나 윤곽의 흐림(SoftEdgeEffect)등이 있습니다.
JAR 패키지 가져오기
방법 1: Free Spire.Presentation for Java을 다운로드하고 압축을 풀면 lib 폴더의 Spire.Presentation.jar 패키지를 종속성으로 Java 응용 프로그램으로 가져옵니다.
방법 2: Maven 리포지토리에서 직접 JAR 패키지를 설치한 후 pom.xml 파일을 다음과 같이 구성합니다.
<repositories>
<repository>
<id>com.e-iceblue</id>
<name>e-iceblue</name>
<url>http://repo.e-iceblue.com/nexus/content/groups/public/</url>
</repository>
</repositories>
<dependencies>
<dependency>
<groupId>e-iceblue</groupId>
<artifactId>spire.presentation.free</artifactId>
<version>3.9.0</version>
</dependency>
</dependencies>
Java 코드 예
import com.spire.presentation.*;
import com.spire.presentation.drawing.FillFormatType;
import com.spire.presentation.drawing.PictureFillType;
import com.spire.presentation.drawing.PresetShadow;
import java.awt.geom.Rectangle2D;
import java.awt.Color;
public class ShapeShadowEffect {
public static void main(String[] args) throws Exception {
//Presentationオブジェクトを作成します。
Presentation ppt = new Presentation();
//最初目のスライドを取得します。
ISlide slide = ppt.getSlides().get(0);
//図形を追加します。
Rectangle2D rect = new Rectangle2D.Float(120, 80, 180, 150);
IAutoShape shape = slide.getShapes().appendShape(ShapeType.RECTANGLE,rect);
//画像を図形に塗りつぶします。
shape.getFill().setFillType(FillFormatType.PICTURE);
shape.getFill().getPictureFill().getPicture().setUrl("C:\\Users\\Administrator\\Desktop\\cow.png");
shape.getFill().getPictureFill().setFillType(PictureFillType.STRETCH);
shape.getLine().setFillType(FillFormatType.NONE);
//影の効果を設定します。
PresetShadow presetShadow = new PresetShadow();
presetShadow.setPreset(PresetShadowValue.BACK_RIGHT_PERSPECTIVE);
presetShadow.getColorFormat().setColor(Color.lightGray);
//図形に影をつけます。
shape.getEffectDag().setPresetShadowEffect(presetShadow);
//ドキュメントを保存します。
ppt.saveToFile("ShapeShadow.pptx", FileFormat.PPTX_2013);
}
}
실행 결과:
Reference
이 문제에 관하여(Java - PowerPoint 도형에 그림자를 붙이는 방법), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://qiita.com/iceblue/items/23a677af3cdced55cd6f텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)