本文介紹了在Java中使用pptx4j將PowerPoint 2007/2010文件格式轉(zhuǎn)換為SVG的處理方法,對大家解決問題具有一定的參考價(jià)值,需要的朋友們下面隨著小編來一起學(xué)習(xí)吧!
問題描述
在我的Java項(xiàng)目中,我使用的是PowerPoint 2007/2010文件格式,所以我使用的是pptx4j開源項(xiàng)目。
但是,我不知道如何將PowerPoint 2007/2010文件格式轉(zhuǎn)換為SVG文件。
有人能幫我嗎?
推薦答案
使用Spire.Presentation for Java組件可以很容易地將powerpoint文件轉(zhuǎn)換為svg,用戶可以從this site
免費(fèi)下載
以下是轉(zhuǎn)換的詳細(xì)步驟。
import com.spire.presentation.Presentation;
import java.io.FileOutputStream;
import java.util.ArrayList;
public class ToSVG {
public static void main(String[] args) throws Exception {
Presentation ppt = new Presentation();
ppt.loadFromFile("C:\Users\Administrator\Desktop\Sample.pptx");
//Save PPT document to images
ArrayList svgBytes =(ArrayList) ppt.saveToSVG();
int count = svgBytes.size();
int len = svgBytes.size();
for (int i = 0; i < len; i++)
{
byte[] bytes = svgBytes.get(i);
FileOutputStream stream = new FileOutputStream(String.format("output/ToSVG-%d.svg", i));
stream.write(bytes);
}
ppt.dispose();
}
這篇關(guān)于在Java中使用pptx4j將PowerPoint 2007/2010文件格式轉(zhuǎn)換為SVG的文章就介紹到這了,希望我們推薦的答案對大家有所幫助,