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

溫馨提示×

溫馨提示×

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

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

java實現PPT轉化為PDF

發布時間:2020-10-19 11:05:04 來源:腳本之家 閱讀:173 作者:opzoonzhuzhengke 欄目:編程語言

JACOB的方法,足可以解決這個問題,但是我既然以前曾經做過報表,就想嘗試不同的方法。

JACOB是一座連接JAVA和微軟的橋,所有的解析由微軟解析。POI是沒有微軟解析的那么原汁原味的,所以如果要求高的話,還是使用JACOB。

大致思路很簡單,將PPT先轉化為圖片,然后將圖片寫入PDF。轉化圖片是用POI,操作PDF使用ITEX。不過這個方法的BUG就是轉化圖片的POI效果不是很好。

導入的包分別是:itextpdf-5.1.3.jar,poi-3.8-20120326.jar,poi-scratchpad-3.8-20120326.jar。

然后貼代碼了:

代碼沒有進行參數統一,寫兩個方法:

package com.zzk.cn; 
 
import java.awt.Dimension; 
import java.io.File; 
import java.io.FileInputStream; 
import java.io.FileNotFoundException; 
import java.io.FileOutputStream; 
import java.io.IOException; 
import java.awt.Color; 
import java.awt.Dimension; 
import java.awt.Graphics2D; 
import java.awt.geom.Rectangle2D; 
import java.awt.image.BufferedImage; 
import org.apache.poi.hslf.model.TextRun; 
import org.apache.poi.hslf.record.Slide; 
import org.apache.poi.hslf.usermodel.RichTextRun; 
import org.apache.poi.hslf.usermodel.SlideShow; 
 
public class PPTtoImage { 
  public static void main(String[] args) { 
    // 讀入PPT文件 
    File file = new File("D:/書本JVM總結7-9.ppt"); 
    doPPTtoImage(file); 
  } 
 
  public static boolean doPPTtoImage(File file) { 
    boolean isppt = checkFile(file); 
    if (!isppt) { 
      System.out.println("你指定的文件不是ppt文檔!"); 
      return false; 
    } 
    try { 
      FileInputStream is = new FileInputStream(file); 
      SlideShow ppt = new SlideShow(is); 
      is.close(); 
      Dimension pgsize = ppt.getPageSize(); 
      org.apache.poi.hslf.model.Slide[] slide = ppt.getSlides(); 
      for (int i = 0; i < slide.length; i++) { 
        System.out.print("第" + i + "頁。"); 
        if (slide[i].getNotesSheet() != null 
            && slide[i].getNotesSheet().getTextRuns() != null) { 
          // 獲取第一個備注 
          System.out.println("備注:" 
              + slide[i].getNotesSheet().getTextRuns()[0] 
                  .getText()); 
        } 
        TextRun[] truns = slide[i].getTextRuns(); 
        for (int k = 0; k < truns.length; k++) { 
          RichTextRun[] rtruns = truns[k].getRichTextRuns(); 
          for (int l = 0; l < rtruns.length; l++) { 
            rtruns[l].setFontIndex(1); 
            rtruns[l].setFontName("宋體"); 
            // 獲取文本列表 
            System.out.println(rtruns[l].getText()); 
          } 
        } 
        BufferedImage img = new BufferedImage(pgsize.width, 
            pgsize.height, BufferedImage.TYPE_INT_RGB); 
        Graphics2D graphics = img.createGraphics(); 
        graphics.setPaint(Color.white); 
        graphics.fill(new Rectangle2D.Float(0, 0, pgsize.width, 
            pgsize.height)); 
        slide[i].draw(graphics); 
        // 這里設置圖片的存放路徑和圖片的格式(jpeg,png,bmp等等),注意生成文件路徑 
        FileOutputStream out = new FileOutputStream("D:/testImage/pict_" 
            + (i + 1) + ".jpeg"); 
        javax.imageio.ImageIO.write(img, "jpeg", out); 
        out.close(); 
      } 
      System.out.println("ok"); 
      return true; 
    } catch (FileNotFoundException e) { 
      System.out.println(e); 
    } catch (IOException e) { 
      e.printStackTrace(); 
    } 
    return false; 
  } 
 
  // function 檢查文件是否為PPT 
  public static boolean checkFile(File file) { 
    boolean isppt = false; 
    String filename = file.getName(); 
    String suffixname = null; 
    if (filename != null && filename.indexOf(".") != -1) { 
      suffixname = filename.substring(filename.indexOf(".")); 
      if (suffixname.equals(".ppt")) { 
        isppt = true; 
      } 
      return isppt; 
    } else { 
      return isppt; 
    } 
  } 
} 

第二段代碼:

package com.zzk.cn; 
 
import java.io.FileOutputStream; 
import java.io.IOException; 
 
import com.itextpdf.text.Document; 
import com.itextpdf.text.DocumentException; 
import com.itextpdf.text.Image; 
import com.itextpdf.text.pdf.PdfWriter; 
 
public class ImagetoPDF { 
   
  public static void main(String[] args) { 
     
    System.out.println("Chapter 6 example 3: using a relative path for HTML"); 
     
    // step 1: creation of a document-object 
    Document document = new Document(); 
     
    try { 
       
      // step 2: 
      // we create a writer that listens to the document 
      // and directs a PDF-stream to a file 
       
      PdfWriter.getInstance(document, new FileOutputStream("D:/測試圖片.pdf")); 
     // HtmlWriter writer = HtmlWriter.getInstance(document, new FileOutputStream("Chap0603.html")); 
       
     // writer.setImagepath("../../images/kerstmis/"); 
       
      // step 3: we open the document 
      document.open(); 
       
      for(int i=1;i<=7;i++) { 
      // step 4: we add content 
      Image jpg = Image.getInstance("D:/testImage/pict_"+i+".jpeg"); 
      jpg.scalePercent(50); 
      document.add(jpg); 
      } 
       
    } 
    catch(DocumentException de) { 
      System.err.println(de.getMessage()); 
    } 
    catch(IOException ioe) { 
      System.err.println(ioe.getMessage()); 
    } 
     
    // step 5: we close the document 
    document.close(); 
  } 
} 

以上就是本文的全部內容,希望對大家的學習有所幫助,也希望大家多多支持億速云。

向AI問一下細節

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

AI

白玉县| 莱芜市| 同仁县| 治多县| 苏州市| 阿克陶县| 喜德县| 桑植县| 云和县| 赤城县| 马关县| 南平市| 和硕县| 汾阳市| 封开县| 剑川县| 德安县| 仪陇县| 镇康县| 鄂温| 合水县| 五峰| 祁阳县| 盐边县| 广元市| 通江县| 图木舒克市| 军事| 花莲市| 罗甸县| 福泉市| 遵义县| 寻乌县| 乌恰县| 罗定市| 如皋市| 康乐县| 青浦区| 田东县| 乐亭县| 泰和县|