Java实现图片转换PDF文件的示例代码

 更新时间:2020年09月02日 10:29:20   作者:看地阔天高云深处  
这篇文章主要介绍了Java实现图片转换PDF文件的示例代码,文中通过示例代码介绍的非常详细,对大家的学习或者工作具有一定的参考学习价值,需要的朋友们下面随着小编来一起学习学习吧

最近因为一些事情,需要将一张简单的图片转换为PDF的文件格式,在网上找了一些工具,但是这些工具不是需要注册账号,就是需要下载软件。

而对于只是转换一张图片的情况下,这些操作显然是非常繁琐的,所以作者就直接使用Java写了一个图片转换PDF的系统,现在将该系统分享在这里。

引入依赖

<!--该项目以SpringBoot为基础搭建-->
<parent>
  <groupId>org.springframework.boot</groupId>
  <artifactId>spring-boot-starter-parent</artifactId>
  <version>2.0.4.RELEASE</version>
  <relativePath/>
</parent>

<dependencies>
	<!--SpringMVC的依赖,方便我们可以获取前端传递过来的文件信息-->
  <dependency>
    <groupId>org.springframework.boot</groupId>
    <artifactId>spring-boot-starter-web</artifactId>
  </dependency>
  <!--ITextPdf,操作PDF文件的工具类-->
  <dependency>
    <groupId>com.itextpdf</groupId>
    <artifactId>itextpdf</artifactId>
    <version>5.4.2</version>
  </dependency>
</dependencies>

前端页面

<!DOCTYPE html>
<html lang="en">
<head>
  <meta charset="UTF-8">
  <title>图片转换Pdf</title>
  <style>
    .submitButton {
      margin-top: 20px;
      margin-left: 150px;
      background-color: #e37e10;
      border-radius: 10px;
      border: 1px solid #ff8300;
    }
  </style>
</head>
<body>
  <div style="text-align: center">
    <h1>图片转换pdf工具</h1>
    <form action="/pdf/image/to" enctype="multipart/form-data" method="post" onsubmit="return allowFileType()">
      <input type="file" id="file" name="file" placeholder="请选择图片" onchange="allowFileType()" style="border: 1px solid black;"><br>
      <input type="submit" value="一键转换pdf文件" class="submitButton">
    </form>
  </div>
</body>
<script>
  function allowFileType() {
    let file = document.getElementById("file").files[0];
    let fileName = file.name;
    console.log(fileName)
    let fileSize = file.size;
    console.log(fileSize)
    let suffix = fileName.substring(fileName.lastIndexOf("."),fileName.length);
    if('.jpg' != suffix && '.png' != suffix) {
      alert("目前只允许传入.jpg或者.png格式的图片!");
      return false;
    }
    if(fileSize > 2*1024*1024) {
      alert("上传图片不允许超过2MB!");
      return false;
    }
    return true;
  }
</script>
</html>

控制层接口

package com.hrp.controller;

import com.hrp.util.PdfUtils;
import org.springframework.stereotype.Controller;
import org.springframework.web.bind.annotation.PostMapping;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RequestParam;
import org.springframework.web.multipart.MultipartFile;

import javax.servlet.http.HttpServletResponse;

/**
 * @description: 用于处理Pdf相关的请求
 */
@Controller
@RequestMapping("pdf")
public class PdfController {

  @PostMapping("image/to")
  public void imageToPdf(@RequestParam("file") MultipartFile file,HttpServletResponse response) throws Exception{
    PdfUtils.imageToPdf(file,response);
  }

}

PDF工具类

package com.hrp.util;

import com.itextpdf.text.Document;
import com.itextpdf.text.DocumentException;
import com.itextpdf.text.Image;
import com.itextpdf.text.PageSize;
import com.itextpdf.text.pdf.PdfWriter;
import org.springframework.stereotype.Component;
import org.springframework.web.multipart.MultipartFile;

import javax.servlet.http.HttpServletResponse;
import java.io.*;
import java.net.URLEncoder;


/**
 * @description: pdf相关的工具类
 */
@Component
public class PdfUtils {

  /**
   * 图片转换PDF的公共接口
   *
   * @param file   SpringMVC获取的图片文件
   * @param response HttpServletResponse
   * @throws IOException    IO异常
   * @throws DocumentException PDF文档异常
   */
  public static void imageToPdf(MultipartFile file, HttpServletResponse response) throws IOException, DocumentException {
    File pdfFile = generatePdfFile(file);
    downloadPdfFile(pdfFile, response);
  }

  /**
   * 将图片转换为PDF文件
   *
   * @param file SpringMVC获取的图片文件
   * @return PDF文件
   * @throws IOException    IO异常
   * @throws DocumentException PDF文档异常
   */
  private static File generatePdfFile(MultipartFile file) throws IOException, DocumentException {
    String fileName = file.getOriginalFilename();
    String pdfFileName = fileName.substring(0, fileName.lastIndexOf(".")) + ".pdf";
    Document doc = new Document(PageSize.A4, 20, 20, 20, 20);
    PdfWriter.getInstance(doc, new FileOutputStream(pdfFileName));
    doc.open();
    doc.newPage();
    Image image = Image.getInstance(file.getBytes());
    float height = image.getHeight();
    float width = image.getWidth();
    int percent = getPercent(height, width);
    image.setAlignment(Image.MIDDLE);
    image.scalePercent(percent);
    doc.add(image);
    doc.close();
    File pdfFile = new File(pdfFileName);
    return pdfFile;
  }

  /**
   *
   * 用于下载PDF文件
   *
   * @param pdfFile PDF文件
   * @param response HttpServletResponse
   * @throws IOException IO异常
   */
  private static void downloadPdfFile(File pdfFile, HttpServletResponse response) throws IOException {
    FileInputStream fis = new FileInputStream(pdfFile);
    byte[] bytes = new byte[fis.available()];
    fis.read(bytes);
    fis.close();

    response.reset();
    response.setHeader("Content-Type", "application/pdf");
    response.setHeader("Content-Disposition", "attachment; filename=" + URLEncoder.encode(pdfFile.getName(), "UTF-8"));
    OutputStream out = response.getOutputStream();
    out.write(bytes);
    out.flush();
    out.close();
  }


  /**
   * 等比压缩,获取压缩百分比
   *
   * @param height 图片的高度
   * @param weight 图片的宽度
   * @return 压缩百分比
   */
  private static int getPercent(float height, float weight) {
    float percent = 0.0F;
    if (height > weight) {
      percent = PageSize.A4.getHeight() / height * 100;
    } else {
      percent = PageSize.A4.getWidth() / weight * 100;
    }
    return Math.round(percent);
  }
}

页面效果

这就是系统启动之后的页面效果,虽然页面比较简陋,但是功能却没有任何折扣,有兴趣或者有需要的同学可以自己搭建一下,试一试图片转换PDF文件的效果。

注意:作者自己测试了一下,普通图片基本是没有问题的,但是遇到一些特殊的图片可能会出现异常,毕竟只是一个比较简单的图片转换PDF系统,难以兼容所有图片。

到此这篇关于Java实现图片转换PDF文件的示例代码的文章就介绍到这了,更多相关Java 图片转换PDF内容请搜索脚本之家以前的文章或继续浏览下面的相关文章希望大家以后多多支持脚本之家!

相关文章

  • Dubbo在Spring和Spring Boot中的使用详解

    Dubbo在Spring和Spring Boot中的使用详解

    这篇文章主要介绍了Dubbo在Spring和Spring Boot中的使用详解,需要的朋友可以参考下
    2017-10-10
  • java web中的servlet3 upload上传文件实践

    java web中的servlet3 upload上传文件实践

    这篇文章主要介绍了servlet3 upload上传文件实践,非常不错,具有参考借鉴价值,需要的朋友可以参考下
    2017-11-11
  • Java多线程编程中易混淆的3个关键字总结

    Java多线程编程中易混淆的3个关键字总结

    这篇文章主要介绍了Java多线程编程中易混淆的3个关键字总结,本文总结了、volatile、ThreadLocal、synchronized等3个关键字,对这几个容易混淆概念的关键字分别做了讲解,需要的朋友可以参考下
    2015-03-03
  • Java thrift服务器和客户端创建实例代码

    Java thrift服务器和客户端创建实例代码

    Thrift是一个软件框架,用来进行可扩展且跨语言的服务的开发。接下来通过本文给大家介绍Java thrift服务器和客户端创建实例代码,需要的朋友参考下吧
    2017-04-04
  • Spring基于注解管理bean实现方式讲解

    Spring基于注解管理bean实现方式讲解

    很多时候我们需要根据不同的条件在容器中加载不同的Bean,或者根据不同的条件来选择是否在容器中加载某个Bean,这就是Bean的加载控制,一般我们可以通过编程式或注解式两种不同的方式来完成Bean的管理
    2023-01-01
  • Java中调用第三方接口的几种方法详细指南

    Java中调用第三方接口的几种方法详细指南

    在Java开发中调用第三方接口是常见需求,本文介绍如何使用Java进行接口调用,重点讲解HttpURLConnection类、OkHttp库和ApacheHttpClient的使用,文中通过代码介绍的非常详细,需要的朋友可以参考下
    2024-10-10
  • Springboot 异步任务和定时任务的异步处理

    Springboot 异步任务和定时任务的异步处理

    本文介绍了Springboot异步任务和定时任务的异步处理,Springboot 中,异步任务和定时任务是经常遇到的处理问题方式,为了能够用好这两项配置,不干扰正常的业务,需要对其进行异步化配置。怎么设置合理的异步处理线程就是其核心和关键,下文详情需要的朋友可以参考下
    2022-05-05
  • jdbc实现图书馆借阅系统

    jdbc实现图书馆借阅系统

    这篇文章主要为大家详细介绍了jdbc实现图书馆借阅系统,文中示例代码介绍的非常详细,具有一定的参考价值,感兴趣的小伙伴们可以参考一下
    2019-02-02
  • Spring Cache原理解析

    Spring Cache原理解析

    Spring Cache是一个框架,它提供了基于注解的缓存功能,使得开发者可以很方便地将缓存集成到他们的应用程序中,这篇文章主要介绍了Spring Cache原理解析,需要的朋友可以参考下
    2024-05-05
  • JDBC数据源连接池配置及应用

    JDBC数据源连接池配置及应用

    这篇文章主要介绍JDBC建立数据库连接的两种方式,使用配置数据源的方式连接数据库,效率更高,推荐使用,希望能给大家做一个参考。
    2016-06-06

最新评论