亚洲激情专区-91九色丨porny丨老师-久久久久久久女国产乱让韩-国产精品午夜小视频观看

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

Java如何實現在PPT中添加文本和圖片超鏈接

發布時間:2020-07-28 13:49:14 來源:億速云 閱讀:144 作者:小豬 欄目:編程語言

這篇文章主要為大家展示了Java如何實現在PPT中添加文本和圖片超鏈接,內容簡而易懂,希望大家可以學習一下,學習完之后肯定會有收獲的,下面讓小編帶大家一起來看看吧。

使用工具:Free Spire.Presentation for Java(免費版)Jar文件獲取及導入:

方法1:通過官網下載獲取jar包。解壓后將lib文件夾下的Spire.Presentation.jar文件導入Java程序。(如下圖)

Java如何實現在PPT中添加文本和圖片超鏈接

方法2:通過maven倉庫安裝導入。具體安裝教程參見此網頁。

【示例1】添加文本超鏈接

import com.spire.presentation.*;
import com.spire.presentation.drawing.FillFormatType;
import java.awt.*;
import java.awt.geom.Rectangle2D;

public class TextHyperlink {
  public static void main(String[] args) throws Exception {
    //創建一個PPT文檔,默認包含一張幻燈片
    Presentation presentation = new Presentation();

    //在文檔最后追加一張幻燈片并填充一些內容,方便之后添加超鏈接鏈接到此幻燈片
    presentation.getSlides().append();
    Rectangle2D.Double rec = new Rectangle2D.Double(presentation.getSlideSize().getSize().getWidth() / 2 - 255, 120, 500, 280);
    IAutoShape shape = presentation.getSlides().get(1).getShapes().appendShape(ShapeType.RECTANGLE, rec);
    shape.getFill().setFillType(FillFormatType.NONE);
    shape.getLine().setWidth(0);
    ParagraphEx para1 = new ParagraphEx();
    PortionEx tr1 = new PortionEx();
    tr1.setText("這是第二頁!");
    para1.getTextRanges().append(tr1);
    shape.getTextFrame().getParagraphs().append(para1);
    para1.setAlignment(TextAlignmentType.CENTER);
    tr1.getFill().setFillType(FillFormatType.SOLID);
    tr1.getFill().getSolidColor().setColor(Color.blue);
    shape.getTextFrame().getParagraphs().append(new ParagraphEx());

    //在第一張幻燈片上添加形狀
    IAutoShape shape1 = presentation.getSlides().get(0).getShapes().appendShape(ShapeType.RECTANGLE, rec);
    shape1.getFill().setFillType(FillFormatType.NONE);
    shape1.getLine().setWidth(0);

    //添加鏈接到網頁的超鏈接
    ParagraphEx para2 = new ParagraphEx();
    PortionEx tr2 = new PortionEx();
    tr2.setText("點擊鏈接到網頁");
    tr2.getClickAction().setAddress("https://www.jianshu.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("點擊鏈接到郵箱地址");
    tr3.getClickAction().setAddress("mailto:Tina.tang@e-iceblue.com");
    para3.getTextRanges().append(tr3);
    shape1.getTextFrame().getParagraphs().append(para3);
    shape1.getTextFrame().getParagraphs().append(new ParagraphEx());

    //添加鏈接到其他文檔的超鏈接
    ParagraphEx para4 = new ParagraphEx();
    PortionEx tr4 = new PortionEx();
    tr4.setText("點擊鏈接到其他文檔");
    tr4.getClickAction().setAddress("C:\\Users\\Test1\\Desktop\\月銷售統計表.xlsx");
    para4.getTextRanges().append(tr4);
    shape1.getTextFrame().getParagraphs().append(para4);
    shape1.getTextFrame().getParagraphs().append(new ParagraphEx());

    //添加超鏈接跳轉到其他幻燈片
    ParagraphEx para5 = new ParagraphEx();
    PortionEx tr5 = new PortionEx("點擊跳轉到第二張幻燈片");
    ClickHyperlink link = new ClickHyperlink(presentation.getSlides().get(1));
    tr5.setClickAction(link);
    para5.getTextRanges().append(tr5);
    shape1.getTextFrame().getParagraphs().append(para5);

    //保存文檔
    presentation.saveToFile("output/TextHyperlink.pptx", FileFormat.PPTX_2010);
  }
}

添加效果:

Java如何實現在PPT中添加文本和圖片超鏈接

注:需幻燈片放映時方能顯示超鏈接地址!

【示例2】添加圖片超鏈接

import com.spire.presentation.*;
import com.spire.presentation.drawing.FillFormatType;
import java.awt.geom.Rectangle2D;

public class ImageHyperlink {
  public static void main(String[] args) throws Exception {
    //創建Presentation對象
    Presentation presentation = new Presentation();

    //獲取第一張幻燈片
    ISlide slide = presentation.getSlides().get(0);

    //添加圖片到幻燈片
    String imaPath = "C:\\Users\\Test1\\Desktop\\Signature.png";
    Rectangle2D.Float rect = new Rectangle2D.Float(50, 50, 220, 100);
    IEmbedImage image = slide.getShapes().appendEmbedImage(ShapeType.RECTANGLE, imaPath, rect);

    //將圖片形狀的邊線設置為無
    image.getLine().setFillType(FillFormatType.NONE);

    //添加超鏈接到圖片
    ClickHyperlink hyperlink = new ClickHyperlink("https://www.jianshu.com/u/96431825b792");
    image.setClick(hyperlink);

    //保存文檔
    presentation.saveToFile("output/ImageHyperLink.pptx", FileFormat.PPTX_2013);
  }
}

添加效果:

Java如何實現在PPT中添加文本和圖片超鏈接

注:需幻燈片放映時方能顯示超鏈接地址!

以上就是關于Java如何實現在PPT中添加文本和圖片超鏈接的內容,如果你們有學習到知識或者技能,可以把它分享出去讓更多的人看到。

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

孟连| 西盟| 吉林市| 三河市| 德江县| 宁强县| 福海县| 达日县| 郎溪县| 宁河县| 浏阳市| 张家港市| 北安市| 泾川县| 凌源市| 岑溪市| 尚义县| 扬州市| 永兴县| 特克斯县| 江北区| 同江市| 龙门县| 萨嘎县| 喀什市| 宁强县| 乡城县| 南充市| 项城市| 天门市| 正阳县| 缙云县| 伊通| 玛纳斯县| 湾仔区| 金沙县| 济南市| 开鲁县| 泸州市| 沭阳县| 扶沟县|