Java는 SmartArt 도형을 PowerPoint에 추가

SmartArt 그래픽은 텍스트 정보의 시각적 표현이며 강력한 조판 기능을 갖추고 있습니다. 이 기사에서는 Java 코드를 사용하여 슬라이드에 SmartArt 그래픽을 만들고 레이아웃을 사용자 정의하는 방법을 보여줍니다.

사용 도구: 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 효과 추가:

좋은 웹페이지 즐겨찾기