java ofd转pdf和jpg
生活随笔
收集整理的這篇文章主要介紹了
java ofd转pdf和jpg
小編覺得挺不錯的,現在分享給大家,幫大家做個參考.
最近剛遇到ofd轉jpg百度好友也找不到 好不容易在git上找到的又不全所以自己整理了一下給大家探探路
首先要導入jar包依賴
<dependency><groupId>org.ofdrw</groupId><artifactId>ofdrw-full</artifactId><version>1.8.6</version></dependency>如果jar下載不下來的話就可以自行導入
mvn install:install-file -Dfile=ofdrw-full-1.8.6.jar -DgroupId=org.ujmp -DartifactId=ofdrw-full -Dversion=1.8.6 -Dpackaging=jar
我把jar放到百度云盤鏈接:https://pan.baidu.com/s/17DCEN0li3Izhgfh5T6KtFg? ?提取碼:1234
把它導入maven依賴后就大功告成你只需要調用里面的方法即可
package com.sh.untils;import org.ofdrw.converter.GeneralConvertException; import org.ofdrw.converter.ImageMaker; import org.ofdrw.reader.DLOFDReader; import org.ofdrw.reader.OFDReader;import javax.imageio.ImageIO; import java.awt.image.BufferedImage; import java.io.IOException; import java.nio.file.Files; import java.nio.file.Path; import java.nio.file.Paths;import static org.ofdrw.converter.ConvertHelper.ofd2pdf;/*** @program: electroniclicense_xinxiang* @description: ofd轉jpg和pdf* @author: Mr.JZQ* @create: 2021-04-17 15:53**/public class OfdConver {public static void main(String[] args) throws IOException {toPng("D:/downloadFile/ceshi.ofd", "D:/downloadFile","aa");}/*** @Description: ofd轉jpg* @Param: * @param null:* @return: * @return: null* @Author: Mr.JZQ* @Date: 2021年04月17日 0017*/public static void toPng(String filename, String dirPath, String jpgName) throws IOException {Files.createDirectories(Paths.get(dirPath));//filename文件路徑到文件名Path src = Paths.get(filename);ImageMaker imageMaker = new ImageMaker(new OFDReader(src), 15);imageMaker.config.setDrawBoundary(false);for (int i = 0; i < imageMaker.pageSize(); i++) {BufferedImage image = imageMaker.makePage(i);//文件要存的路徑 第二個是文件名Path dist = Paths.get(dirPath, jpgName + ".jpg");ImageIO.write(image, "PNG", dist.toFile());}}/*** 轉PDF** @param input OFD輸入文件* @param output PDF輸出文件路徑* @throws IllegalArgumentException 參數錯誤* @throws GeneralConvertException 文檔轉換過程中異常*/public static void toPdf(Path input, Path output) {ofd2pdf(input, output);} }這樣就大功告成 開箱即用
總結
以上是生活随笔為你收集整理的java ofd转pdf和jpg的全部內容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: pdf编辑工具linux,7个Ubunt
- 下一篇: 使用reflector反编译exe文件和