SmartArt-Grafiken sind eine visuelle Darstellung von Textinformationen mit leistungsstarken Formatierungsfunktionen. Dieser Artikel zeigt Ihnen, wie Sie mit Java-Code eine SmartArt-Grafik auf einer Folie erstellen und deren Layout anpassen.
** Verwendete Tools: ** Free Spire.Presentation für Java (kostenlose Version)
** Installationsmethode 1: ** Laden Sie das Paket Free Spire.Presentation for Java herunter und entpacken Sie es. Importieren Sie anschließend das Paket Spire.Presentation.jar aus dem Ordner lib in Ihre Java-Anwendung.
** Installationsmethode 2: ** Installation und Import über Maven Warehouse. Eine detaillierte Bedienungsanleitung finden Sie unter dem Link: https://www.e-iceblue.cn/licensing/install-spirepdf-for-java-from-maven-repository.html
** Java-Codebeispiel **
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 {
//Erstellen Sie ein PowerPoint-Dokument
Presentation presentation = new Presentation();
//Holen Sie sich die erste Folie
ISlide slide = presentation.getSlides().get(0);
//Organigramm auf der Folie'Organization Chart'Erschaffen
ISmartArt smartArt = slide.getShapes().appendSmartArt(60, 60, 500, 300, SmartArtLayoutType.ORGANIZATION_CHART);
//Stellen Sie den Stil und die Farbe von SmartArt ein
smartArt.setStyle(SmartArtStyleType.MODERATE_EFFECT);
smartArt.setColorStyle(SmartArtColorType.DARK_2_OUTLINE);
//Löschen Sie den Standardknoten (SmartArt-Grafik)
for (Object a : smartArt.getNodes()) {
smartArt.getNodes().removeNode(0);
}
//Fügen Sie einen übergeordneten Knoten hinzu
ISmartArtNode node1 = smartArt.getNodes().addNode();
//Fügen Sie 4 untergeordnete Knoten unter dem übergeordneten Knoten hinzu
ISmartArtNode node1_1 = node1.getChildNodes().addNode();
ISmartArtNode node1_2 = node1.getChildNodes().addNode();
ISmartArtNode node1_3 = node1.getChildNodes().addNode();
ISmartArtNode node1_4 = node1.getChildNodes().addNode();
//Stellen Sie den Text und die Textgröße des Knotens ein
node1.getTextFrame().setText("Hauptbüro");
node1.getTextFrame().getTextRange().setFontHeight(14f);
node1_1.getTextFrame().setText("Investment Management Abteilung");
node1_1.getTextFrame().getTextRange().setFontHeight(12f);
node1_2.getTextFrame().setText("Finanzabteilung");
node1_2.getTextFrame().getTextRange().setFontHeight(12f);
node1_3.getTextFrame().setText("Verkaufsabteilung");
node1_3.getTextFrame().getTextRange().setFontHeight(12f);
node1_4.getTextFrame().setText("Technische Abteilung");
node1_4.getTextFrame().getTextRange().setFontHeight(12f);
//Speichern Sie das Dokument
presentation.saveToFile("SmartArt.pptx", FileFormat.PPTX_2010);
presentation.dispose();
}
}
** SmartArt-Effekt hinzufügen: **
Recommended Posts