您好,登錄后才能下訂單哦!
本文介紹通過Java程序在PPT幻燈片中添加超鏈接的方法,可以給文本或者圖片設置超鏈接,設置超鏈接時,可設置包括網頁鏈接、郵件地址鏈接、幻燈片跳轉鏈接等不同指向對象的鏈接。文中方法使用了免費版PPT類庫(Free Spire.Presentation for Java),可在官網 下 載jar包,并解壓將lib文件夾下的jar導入java程序。
如下導入效果:
程序運行環境:Java、IDEA、jdk1.8.0、無需安裝Microsoft PowerPoint
import com.spire.presentation.*; import com.spire.presentation.drawing.FillFormatType; import java.awt.geom.Rectangle2D; public class AddHyperlink { public static void main(String[] args) throws Exception{ //加載測試PPT Presentation ppt = new Presentation(); ppt.loadFromFile("test.pptx"); //實例化Rectangle2D.Double類的對象 Rectangle2D.Double rec = new Rectangle2D.Double(350, 150, 400, 180); //在第1張幻燈片上添加形狀 IAutoShape shape1 = ppt.getSlides().get(0).getShapes().appendShape(ShapeType.RECTANGLE, rec); shape1.getFill().setFillType(FillFormatType.NONE); shape1.getLine().setFillType(FillFormatType.NONE); //添加鏈接到網頁的超鏈接 ParagraphEx para1 = new ParagraphEx(); PortionEx tr1 = new PortionEx(); tr1.setText("1. 網頁地址鏈接:點擊訪問網頁"); tr1.getClickAction().setAddress("https://www.baidu.com/"); para1.getTextRanges().append(tr1); shape1.getTextFrame().getParagraphs().append(para1); shape1.getTextFrame().getParagraphs().append(new ParagraphEx()); //添加鏈接到郵箱地址的超鏈接 ParagraphEx para2 = new ParagraphEx(); PortionEx tr2 = new PortionEx(); tr2.setText("2. 郵箱地址鏈接:點擊發送郵件"); tr2.getClickAction().setAddress("mailto:123654zz@163.com"); para2.getTextRanges().append(tr2); shape1.getTextFrame().getParagraphs().append(para2); shape1.getTextFrame().getParagraphs().append(new ParagraphEx()); //添加超鏈接跳轉到其他幻燈片 ParagraphEx para3 = new ParagraphEx(); PortionEx tr3 = new PortionEx(); tr3.setText("3. 幻燈片跳轉鏈接:點擊跳轉到第二張幻燈片"); ClickHyperlink link = new ClickHyperlink(ppt.getSlides().get(1)); tr3.setClickAction(link); para3.getTextRanges().append(tr3); shape1.getTextFrame().getParagraphs().append(para3); //添加圖片到第2張幻燈片,并設置超鏈接 String imaPath = "pd.png"; Rectangle2D.Float rect = new Rectangle2D.Float(230, 200, 500, 250); IEmbedImage image = ppt.getSlides().get(1).getShapes().appendEmbedImage(ShapeType.RECTANGLE, imaPath, rect); image.getLine().setFillType(FillFormatType.NONE); ClickHyperlink hyperlink = new ClickHyperlink("https://www.baidu.com/"); image.setClick(hyperlink); //保存文檔 ppt.saveToFile("AddHyperlink.pptx", FileFormat.PPTX_2010); ppt.dispose(); } }
超鏈接添加效果可在幻燈片放映中查看:
文本超鏈接:
圖片超鏈接:
(本文完)
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。