[자바] PowerPoint에서 SmartArt 그래픽을 만드는 방법
11566 단어 powerpointsmartartjava
설치
방법 1: Free Spire.Presentation for Java을 다운로드하고 압축을 풉니다. 그런 다음 Spire.Presentation.jar 파일을 종속성으로 프로젝트에 추가합니다.
방법 2: pom.xml에 다음 구성을 추가하여 maven 프로젝트에 jar 종속성을 추가할 수도 있습니다.
<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>2.6.1</version>
</dependency>
</dependencies>
SmartArt 그래픽 만들기:
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 {
//Create a PowerPoint document
Presentation presentation = new Presentation();
//Get the first slide
ISlide slide = presentation.getSlides().get(0);
//Insert an Organization Chart into the slide
ISmartArt smartArt = slide.getShapes().appendSmartArt(60, 60, 500, 400, SmartArtLayoutType.ORGANIZATION_CHART);
//Set the color of the smartart
smartArt.setStyle(SmartArtStyleType.MODERATE_EFFECT);
smartArt.setColorStyle(SmartArtColorType.GRADIENT_RANGE_ACCENT_1);
//Remove all default nodes
for (Object a : smartArt.getNodes()) {
smartArt.getNodes().removeNode(0);
}
//Add a parent node
ISmartArtNode node1 = smartArt.getNodes().addNode();
//Add 4 child nodes
ISmartArtNode node1_1 = node1.getChildNodes().addNode();
ISmartArtNode node1_2 = node1.getChildNodes().addNode();
ISmartArtNode node1_3 = node1.getChildNodes().addNode();
ISmartArtNode node1_4 = node1.getChildNodes().addNode();
//Add text to each node and set the font size
node1.getTextFrame().setText("General Manager");
node1.getTextFrame().getTextRange().setFontHeight(14f);
node1_1.getTextFrame().setText("Marketing Manager");
node1_1.getTextFrame().getTextRange().setFontHeight(12f);
node1_2.getTextFrame().setText("Operation Manager");
node1_2.getTextFrame().getTextRange().setFontHeight(12f);
node1_3.getTextFrame().setText("Human Resource Manager");
node1_3.getTextFrame().getTextRange().setFontHeight(12f);
node1_4.getTextFrame().setText("Account Manager");
node1_4.getTextFrame().getTextRange().setFontHeight(12f);
//Save the document
presentation.saveToFile("SmartArt.pptx", FileFormat.PPTX_2010);
presentation.dispose();
}
}
Reference
이 문제에 관하여([자바] PowerPoint에서 SmartArt 그래픽을 만드는 방법), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://dev.to/codesharing/java-how-to-create-a-smartart-graphic-in-powerpoint-53ec텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)