Java는 SmartArt 도형을 PowerPoint에 추가
사용 도구: Free Spire.Presentation for Java(무료 버전)
설치 방법 1: Free Spire.Presentation for Java 패키지를 다운로드하고 압축을 푼 다음 lib 폴더에서 Spire.Presentation.jar 패키지를 Java 응용 프로그램으로 가져옵니다.
설치 방법 2: Maven 웨어하우스를 통해 설치 및 가져오기. 자세한 조작 절차는 링크를 참조하십시오.
htps //w w. 에이세 b. c 응 / ぃ せん し ん g / い ん たっ l s ぴれ pdf ふぉ r - 그럼 ゔ ぁ f 로 m ゔ ぇ ん れ ぽ と ry. HTML
Java 코드 예
import com.spire.presentation.FileFormat;
import com.spire.presentation.ISlide;
import com.spire.presentation.Presentation;
import com.spire.presentation.diagrams.*;
public class AddSmartArt {
public static void main(String[] args) throws Exception {
//PowerPointドキュメントを作成する
Presentation presentation = new Presentation();
//最初のスライドを取得
ISlide slide = presentation.getSlides().get(0);
//スライドに組織図「'Organization Chart'」を作成する
ISmartArt smartArt = slide.getShapes().appendSmartArt(60, 60, 500, 300, SmartArtLayoutType.ORGANIZATION_CHART);
//SmartArtのスタイルと色を設定する
smartArt.setStyle(SmartArtStyleType.MODERATE_EFFECT);
smartArt.setColorStyle(SmartArtColorType.DARK_2_OUTLINE);
//既定のノードを削除する(SmartArtのグラフィック)
for (Object a : smartArt.getNodes()) {
smartArt.getNodes().removeNode(0);
}
//親ノードを追加する
ISmartArtNode node1 = smartArt.getNodes().addNode();
//親ノードの下に4つの子ノードを追加する
ISmartArtNode node1_1 = node1.getChildNodes().addNode();
ISmartArtNode node1_2 = node1.getChildNodes().addNode();
ISmartArtNode node1_3 = node1.getChildNodes().addNode();
ISmartArtNode node1_4 = node1.getChildNodes().addNode();
//ノードのテキストとテキストサイズを設定する
node1.getTextFrame().setText("本社");
node1.getTextFrame().getTextRange().setFontHeight(14f);
node1_1.getTextFrame().setText("投資管理部");
node1_1.getTextFrame().getTextRange().setFontHeight(12f);
node1_2.getTextFrame().setText("財務部");
node1_2.getTextFrame().getTextRange().setFontHeight(12f);
node1_3.getTextFrame().setText("営業部");
node1_3.getTextFrame().getTextRange().setFontHeight(12f);
node1_4.getTextFrame().setText("技術部");
node1_4.getTextFrame().getTextRange().setFontHeight(12f);
//ドキュメントを保存します
presentation.saveToFile("SmartArt.pptx", FileFormat.PPTX_2010);
presentation.dispose();
}
}
SmartArt 효과 추가:
Reference
이 문제에 관하여(Java는 SmartArt 도형을 PowerPoint에 추가), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://qiita.com/iceblue/items/48b556784d3f3284a316텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)