PowerPoint是可以製做出集文字、圖形、聲音以及視頻剪輯等多媒體元素於一體的演示文稿,所以,經過PPT能夠將所需表達的內容直觀、形象地展現給他人。考慮到徹底經過Java程序來全新建立出精美的PPT文稿比較耗時,建議可先使用MS PPT來建立一個模板,其次再經過Java程序替換模板中的文本和圖片,以此既節約時間,同時又能呈現完美效果。因此,本文着重介紹經過Java程序來演示如何替換PPT文檔中已有的文本和圖片。html
方法1:經過官網下載獲取jar包。解壓後將lib文件夾下的Spire.Presentation.jar文件導入Java程序。(以下圖)
java
方法2:經過maven倉庫安裝導入。具體安裝詳解參見此網頁。app
首先,在此建立了一張含有圖片及文本信息的PPT幻燈片模板。(以下圖)對模板中的文本能夠預先設置好字體、字號和顏色等樣式,以便被替換進文檔的新文本可以保留想要的格式。maven
import com.spire.presentation.*; import java.util.HashMap; import java.util.Map; public class ReplaceText { public static void main(String[] args) throws Exception { //建立Presentation對象 Presentation presentation = new Presentation(); //加載示例文檔 presentation.loadFromFile("C:\\Users\\Test1\\Desktop\\Sample.pptx"); //獲取第一張幻燈片 ISlide slide= presentation.getSlides().get(0); //建立Map對象 Map<String, String> map = new HashMap<String, String>(); //將須要被替換和用於替換的文本以鍵值的形式添加到Map map.put("#景點名稱#","北京故宮"); map.put("#地理位置#","北京,中國"); String description = " 北京故宮是中國明清兩代的皇家宮殿,舊稱紫禁城,位於北京中軸線的中心," + "是中國古代宮廷建築之精華。北京故宮以三大殿爲中心,佔地面積72萬平方米,建築面積約15萬平方米," + "有大小宮殿七十多座,房屋九千餘間。是世界上現存規模最大、保存最爲完整的木質結構古建築之一。"; map.put("#基本信息#",description); //替換幻燈片中的文本 replaceText(slide,map); //保存文檔 presentation.saveToFile("output/ReplaceText.pptx", FileFormat.PPTX_2013); } /** * 替換指定幻燈片中的文本 * @param slide指定幻燈片 * @param map以鍵值的形式存儲須要被替換和用於替換的文本 */ public static void replaceText(ISlide slide, Map<String, String> map) { for (Object shape : slide.getShapes() ) { if (shape instanceof IAutoShape) { for (Object paragraph : ((IAutoShape) shape).getTextFrame().getParagraphs() ) { ParagraphEx paragraphEx =(ParagraphEx)paragraph; for (String key : map.keySet() ) { if (paragraphEx.getText().contains(key)) { paragraphEx.setText(paragraphEx.getText().replace(key, map.get(key))); } } } } } } }
文本替換效果:ide
import com.spire.presentation.*; import com.spire.presentation.drawing.IImageData; import javax.imageio.ImageIO; import java.awt.image.BufferedImage; import java.io.FileInputStream; import java.io.FileNotFoundException; public class ReplaceImage { public static void main(String[] args) throws Exception { //建立Presentation對象 Presentation presentation= new Presentation(); //加載PowerPoint示例文檔 presentation.loadFromFile("C:\\Users\\Test1\\Desktop\\ReplaceText.pptx"); //添加圖片到圖片集合 String imagePath ="C:\\Users\\Test1\\Desktop\\Image.png"; BufferedImage bufferedImage = ImageIO.read(new FileInputStream(imagePath)); IImageData image = presentation.getImages().append(bufferedImage); //獲取第一張幻燈片上形狀集合 ShapeCollection shapes = presentation.getSlides().get(0).getShapes(); //遍歷全部形狀 for (int i = 0; i < shapes.getCount(); i++) { //判斷形狀是不是圖片 if (shapes.get(i) instanceof SlidePicture) { //將第一張圖片用新圖片填充 ((SlidePicture)shapes.get(i)).getPictureFill().getPicture().setEmbedImage(image); break; } } //保存文檔 presentation.saveToFile("output/ReplaceImage.pptx", FileFormat.PPTX_2013); } }
圖片替換效果:工具
(本文完)字體