您好,登錄后才能下訂單哦!
本篇內容介紹了“Java怎么實現在PPT中創建SmartArt圖形”的有關知識,在實際案例的操作過程中,不少人都會遇到這樣的困境,接下來就讓小編帶領大家學習一下如何處理這些情況吧!希望大家仔細閱讀,能夠學有所成!
SmartArt其實就是一個文字的可視化工具,用戶可在PowerPoint,Word,Excel中使用該特性創建各種圖形圖表。SmartArt 圖形是信息和觀點的視覺表示形式。可以通過從多種不同布局中進行選擇來創建 SmartArt 圖形,從而快速、輕松、有效地傳達信息。簡單的來說SmartArt就是PPT內建的邏輯圖表,主要用于表達文本之間的邏輯關系,可幫助你快速、輕松、有效的傳達信息。
IntelliJ IDEA 2019(jdk 1.8.0)
Presentation Jar包:Free Spire.Presentation for Java 5.1.0
導入方法1:
手動引入。將Free Spire. Presentation for Java下載到本地,解壓,找到lib文件夾下的Spire. Presentation.jar文件。在IDEA中打開如下界面,將本地路徑中的jar文件引入Java程序:
導入方法2:如果您想通過 Maven安裝,則可以在 pom.xml 文件中添加以下代碼導入 JAR 文件。
<repositories> <repository> <id>com.e-iceblue</id> <name>e-iceblue</name> <url>https://repo.e-iceblue.cn/repository/maven-public/</url> </repository> </repositories> <dependencies> <dependency> <groupId>e-iceblue</groupId> <artifactId>spire.presentation.free</artifactId> <version>5.1.0</version> </dependency> </dependencies>
創建 SmartArt 圖形時,可根據創建的圖形,在預設的節點中添加內容;也可以根據設計需要自行添加節點或者刪除節點。下面,是本次創建 SmartArt 圖形的主要步驟:
創建 Presentation 類的對象。
通過 Presentation.getSlides().get(int index) 方法獲取指定幻燈片。
使用 ISlide.getShapes().appendSmartArt(float x, float y, float width, float height, SmartArtLayoutType layoutType) 方法添加 SmartArt 圖形到幻燈片。
使用 IsmartArt.setColorStyle(SmartArtColorType smartArtColorType)方法和IsmartArt.setStyle(SmartArtStyleType smartArtStyleType) 方法設置圖形顏色和樣式。
通過 IsmartArtNode.getNodes().get(int index)方法獲取指定節點,然后使用ISmartArtNode.getTextFrame().setText(String string) 方法向節點添加內容。
如需自定義節點內容,可在添加圖形后,通過 ISmartArt.getNodes().removeNode(IsmartArtNode iSmartArtNode) 方法刪除原有節點后,以 ISmartArt.getNodes().addNode() 方法添加節點和 IsmartArtNode.getChildNodes().addNode() 方法添加子節點,然后采用上一步驟的方法添加內容到自定義的節點。
最后,使用 Presentation.saveToFile(String file, FileFormat fileFormat) 方法保存幻燈片文檔到指定路徑。
import com.spire.presentation.*; import com.spire.presentation.diagrams.*; public class SmartArt { public static void main(String[] args) throws Exception{ //創建PPT文檔,獲取一張幻燈片(創建的空白PPT文檔,默認包含一張幻燈片) Presentation ppt = new Presentation(); ISlide slide = ppt.getSlides().get(0); //創建SmartArt圖形1 ISmartArt smartArt1 = slide.getShapes().appendSmartArt(50,50,200,200, SmartArtLayoutType.BASIC_CYCLE);//在幻燈片指定位置添加指定大小和布局類型的SmartArt圖形 smartArt1.setColorStyle(SmartArtColorType.COLORFUL_ACCENT_COLORS_4_TO_5);//設置SmartArt圖形顏色類型 smartArt1.setStyle(SmartArtStyleType.INTENCE_EFFECT);//設置SmartArt圖形樣式 ISmartArtNode smartArtNode1 = smartArt1.getNodes().get(0);//獲取節點 smartArtNode1.getTextFrame().setText("設計");//添加內容 smartArt1.getNodes().get(1).getTextFrame().setText("求實"); smartArt1.getNodes().get(2).getTextFrame().setText("練習"); smartArt1.getNodes().get(3).getTextFrame().setText("實踐"); smartArt1.getNodes().get(4).getTextFrame().setText("創新"); //創建SmartArt圖形2,自定義節點內容 ISmartArt smartArt2 = slide.getShapes().appendSmartArt(400,200,200,200,SmartArtLayoutType.BASIC_RADIAL); smartArt2.setColorStyle(SmartArtColorType.DARK_2_OUTLINE); smartArt2.setStyle(SmartArtStyleType.MODERATE_EFFECT); //刪除默認的節點(SmartArt中的圖形) for (Object a : smartArt2.getNodes()) { smartArt2.getNodes().removeNode((ISmartArtNode) a); } //添加一個母節點 ISmartArtNode node2 = smartArt2.getNodes().addNode(); //在母節點下添加三個子節點 ISmartArtNode node2_1 = node2.getChildNodes().addNode(); ISmartArtNode node2_2 = node2.getChildNodes().addNode(); ISmartArtNode node2_3 = node2.getChildNodes().addNode(); //在節點上設置文字及文字大小 node2.getTextFrame().setText("設備"); node2.getTextFrame().getTextRange().setFontHeight(14f); node2_1.getTextFrame().setText("機械"); node2_1.getTextFrame().getTextRange().setFontHeight(12f); node2_2.getTextFrame().setText("電氣"); node2_2.getTextFrame().getTextRange().setFontHeight(12f); node2_3.getTextFrame().setText("自動化"); node2_3.getTextFrame().getTextRange().setFontHeight(12f); //保存文檔 ppt.saveToFile("AddSmartArt.pptx",FileFormat.PPTX_2013); ppt.dispose(); } }
“Java怎么實現在PPT中創建SmartArt圖形”的內容就介紹到這里了,感謝大家的閱讀。如果想了解更多行業相關的知識可以關注億速云網站,小編將為大家輸出更多高質量的實用文章!
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。