ITEXT 生成 导出 PDF
程序员文章站
2022-07-13 14:27:05
...
## maven配置
<!-- PDF-->
<dependency>
<groupId>com.itextpdf</groupId>
<artifactId>itextpdf</artifactId>
<version>5.5.13.1</version>
</dependency>
##导出工具类
import com.itextpdf.text.*;
import com.itextpdf.text.pdf.*;
import org.apache.commons.lang.StringUtils;
import javax.servlet.http.HttpServletResponse;
import java.io.*;
public class ItextPdfUtils {
public static void main(String[] args) throws Exception{
// generateUserInfoPdf();
//addWaterMark("E:\\pdf\\1573416728776200.pdf","E:\\pdf\\1573416728776200OLod.pdf","水印pingoit",20,750);
//addWaterMarkImg("E:\\pdf\\1573416728776200.pdf","E:\\pdf\\1573416728776200OImage.pdf","E:\\pdf\\Watermark\\log.jpg",20,750);
ItextPdfUtils utils=new ItextPdfUtils();
//utils.deleteAll("E:\\\\project\\pdf\\测试2_.pdf");
}
/**
* 创建示例
* @throws IOException
* @throws DocumentException
*/
public static void generateUserInfoPdf() throws IOException, DocumentException {
//创建Document对象
Document doc=new Document(PageSize.A4,0,0,50,0);
//获得PdfWriter实例,将文档放到输出流上
PdfWriter.getInstance(doc, new FileOutputStream("E:\\pdf\\"+System.nanoTime()+".pdf"));
/*
* 由于itext不支持中文,所以需要进行字体的设置,我这里让itext调用windows系统的中文字体,
* 找到文件后,打开属性,将文件名及所在路径作为字体名即可。
*/
//创建BaseFont对象,指明字体,编码方式,是否嵌入
BaseFont bf=BaseFont.createFont("C:\\Windows\\Fonts\\simkai.ttf", BaseFont.IDENTITY_H, false);
//创建Font对象,将基础字体对象,字体大小,字体风格
Font font=new Font(bf,13,Font.NORMAL);
Font font1=new Font(bf,15,Font.BOLD);
Font fontTitle=new Font(bf,20,Font.BOLD);
// 一、个人基本资料及素质情况:
//创建PdfTable对象
PdfPTable table=new PdfPTable(5);
//设置各列的列宽
table.setTotalWidth(new float[]{100,140,100,140,120});
//添加表格内容
table.addCell(getPDFCell("姓名",font));
table.addCell(getPDFCell("张敏",font));
table.addCell(getPDFCell("性别",font));
table.addCell(getPDFCell("男",font));
//添加图片
Image img=Image.getInstance("E:\\pdf\\Watermark\\carp.png",true);
img.scaleAbsolute(0, 100);
PdfPCell cell=new PdfPCell(img);
cell.setRowspan(4);
table.addCell(cell);
table.addCell(getPDFCell("身份证",font));
table.addCell(getPDFCell("1111",font));
table.addCell(getPDFCell("出生年月",font));
table.addCell(getPDFCell("1991-01",font));
table.addCell(getPDFCell("院校",font));
table.addCell(getPDFCell("学校",font));
table.addCell(getPDFCell("学历",font));
table.addCell(getPDFCell("本科",font));
table.addCell(getPDFCell("专业",font));
table.addCell(getPDFCell("****",font));
table.addCell(getPDFCell("职位/职称",font));
table.addCell(getPDFCell("****",font));
table.addCell(getPDFCell("手机号",font));
table.addCell(getPDFCell("手机号",font));
table.addCell(getPDFCell("常驻地址",font));
cell=mergeCol("*********", font, 2);
table.addCell(cell);
table.addCell(getPDFCell("证书",font));
cell=mergeCol("证书", font, 4);
table.addCell(cell);
cell=mergeRow("专业技能", font, 6);
table.addCell(cell);
cell=mergeCol("高级******************", font, 4);
table.addCell(cell);
//二、教育背景(自大专开始填写):
//创建PdfTable对象
PdfPTable tableEducation=new PdfPTable(5);
//设置各列的列宽
tableEducation.setTotalWidth(new float[]{140,120,100,140,100});
tableEducation.addCell(getPDFCell("起止时间",font));
tableEducation.addCell(getPDFCell("学校",font));
tableEducation.addCell(getPDFCell("专业",font));
tableEducation.addCell(getPDFCell("就读形式",font));
tableEducation.addCell(getPDFCell("所获学历、学位",font));
for(int i=0;i<5;i++){
tableEducation.addCell(getPDFCell("年 月— 年 月",font));
tableEducation.addCell(getPDFCell("学校"+i,font));
tableEducation.addCell(getPDFCell("专业"+i,font));
tableEducation.addCell(getPDFCell("就读形式"+i,font));
tableEducation.addCell(getPDFCell("所获学历"+i,font));
}
//三、工作经历:
// 工作经验
//创建PdfTable对象
PdfPTable tableExperience=new PdfPTable(4);
//设置各列的列宽
tableExperience.setTotalWidth(new float[]{140,120,100,140});
tableExperience.addCell(getPDFCell("起止时间",font));
tableExperience.addCell(getPDFCell("工作",font));
tableExperience.addCell(getPDFCell("岗位",font));
tableExperience.addCell(getPDFCell("背调人",font));
for(int i=0;i<3;i++){
tableExperience.addCell(getPDFCell("年 月— 年 月",font));
tableExperience.addCell(getPDFCell("工作"+i,font));
tableExperience.addCell(getPDFCell("岗位"+i,font));
tableExperience.addCell(getPDFCell("背调"+i,font));
}
// 项目经验
//创建PdfTable对象
PdfPTable tableProjectExperience=new PdfPTable(4);
//设置各列的列宽
tableProjectExperience.setTotalWidth(new float[]{140,120,80,200});
tableProjectExperience.addCell(getPDFCell("参加时间",font));
tableProjectExperience.addCell(getPDFCell("项目名称",font));
tableProjectExperience.addCell(getPDFCell("项目角色",font));
tableProjectExperience.addCell(getPDFCell("工作内容描述",font));
for(int i=0;i<3;i++){
tableProjectExperience.addCell(getPDFCell("参加时间",font));
tableProjectExperience.addCell(getPDFCell("项目名称"+i,font));
tableProjectExperience.addCell(getPDFCell("项目角色"+i,font));
tableProjectExperience.addCell(getPDFCell("工作内容描述"+i,font));
}
//文档写入内容
doc.open();
Paragraph title=new Paragraph("信息表",fontTitle);
title.setSpacingBefore(25);
title.setSpacingAfter(25);
title.setAlignment(Paragraph.ALIGN_CENTER);
doc.add(title);
Paragraph titleOne=new Paragraph(" 一、个人基本资料",font1);
titleOne.setSpacingBefore(25);
titleOne.setSpacingAfter(25);
titleOne.setAlignment(Paragraph.ALIGN_LEFT);
doc.add(titleOne);
doc.add(table);
Paragraph titleEducation=new Paragraph(" 二、教育",font1);
//前 间距
titleEducation.setSpacingBefore(25);
// 后 间距
titleEducation.setSpacingAfter(25);
//对齐方式
titleEducation.setAlignment(Paragraph.ALIGN_LEFT);
doc.add(titleEducation);
doc.add(tableEducation);
Paragraph titleWork=new Paragraph(" 三、工作经历",font1);
titleWork.setSpacingBefore(25);
titleWork.setSpacingAfter(25);
titleWork.setAlignment(Paragraph.ALIGN_LEFT);
doc.add(titleWork);
Paragraph titleWorkExperience=new Paragraph(" (一)工作经验",font1);
titleWorkExperience.setAlignment(Paragraph.ALIGN_LEFT);
titleWorkExperience.setSpacingAfter(25);
doc.add(titleWorkExperience);
doc.add(tableExperience);
Paragraph titleProjectExperience=new Paragraph(" (二)项目经验",font1);
titleProjectExperience.setAlignment(Paragraph.ALIGN_LEFT);
titleProjectExperience.setSpacingBefore(25);
titleProjectExperience.setSpacingAfter(25);
doc.add(titleProjectExperience);
doc.add(tableProjectExperience);
Paragraph titleExplanation=new Paragraph("说明:本人承诺上。",font1);
titleExplanation.setAlignment(Paragraph.ALIGN_CENTER);
titleExplanation.setSpacingBefore(25);
titleExplanation.setSpacingAfter(25);
titleExplanation.setIndentationLeft(50);
titleExplanation.setIndentationRight(52);
doc.add(titleExplanation);
Paragraph titleSignature=new Paragraph("填报人: 年 月 日",font1);
titleSignature.setAlignment(Paragraph.ALIGN_RIGHT);
titleSignature.setIndentationRight(50);
doc.add(titleSignature);
doc.close();
}
/**
*
* 【功能描述:添加文字水印】 【功能详细描述:功能详细描述】
* @param srcFile 待加水印文件
* @param destFile 加水印后存放地址
* @param text 加水印的文本内容
* @param textWidth 文字横坐标
* @param textHeight 文字纵坐标
* @throws Exception
*/
public static void addWaterMark(String srcFile, String destFile, String text, int textWidth, int textHeight) throws Exception{
// 待加水印的文件
PdfReader reader = new PdfReader(srcFile);
// 加完水印的文件
PdfStamper stamper = new PdfStamper(reader, new FileOutputStream(destFile));
int total = reader.getNumberOfPages() + 1;
PdfContentByte content;
// 设置字体
BaseFont font = BaseFont.createFont();
// 循环对每页插入水印
for (int i = 1; i < total; i++){
// 水印的起始
content = stamper.getUnderContent(i);
// 开始
content.beginText();
// 设置颜色 默认为蓝色
content.setColorFill(BaseColor.BLUE);
// content.setColorFill(Color.GRAY);
// 设置字体及字号
content.setFontAndSize(font, 38);
// 设置起始位置
// content.setTextMatrix(400, 880);
content.setTextMatrix(textWidth, textHeight);
// 开始写入水印
content.showTextAligned(Element.ALIGN_LEFT, text, textWidth,textHeight, 45);
content.endText();
}
stamper.close();
}
/**
*
* 【功能描述:添加图片水印】 【功能详细描述:功能详细描述】
* @param srcFile 待加水印文件
* @param destFile 加水印后存放地址
* @param imageLog 加水印的文本内容
* @param inageX 横坐标
* @param inageY 纵坐标
* @throws Exception
*/
public static void addWaterMarkImg(String srcFile, String destFile, String imageLog, int inageX, int inageY) throws Exception{
// 待加水印的文件
PdfReader reader = new PdfReader(srcFile);
// 加完水印的文件
PdfStamper stamper = new PdfStamper(reader, new FileOutputStream(destFile));
int total = reader.getNumberOfPages() + 1;
PdfContentByte content;
// 设置水印透明度
PdfGState gs = new PdfGState();
// 设置笔触字体不透明度为0.4f
gs.setStrokeOpacity(0.4f);
// 循环对每页插入水印
for (int i = 1; i < total; i++){
// 水印的起始
content = stamper.getUnderContent(i);
Image image = Image.getInstance(imageLog);
// 设置坐标 绝对位置 X Y
image.setAbsolutePosition(inageX, inageY);
// 设置旋转弧度
// image.setRotation(30);// 旋转 弧度
// 设置旋转角度
// image.setRotationDegrees(45);// 旋转 角度
// 设置等比缩放
image.scalePercent(20);// 依照比例缩放
// image.scaleAbsolute(200,100);//自定义大小
// 设置透明度
content.setGState(gs);
// 添加水印图片
content.addImage(image);
// 设置透明度
content.setGState(gs);
//结束设置
content.stroke();
}
stamper.close();
}
/**
* 合并行的静态函数
* @param str 文本
* @param font 字体
* @param i 行数
* @return
*/
public static PdfPCell mergeRow(String str,Font font,int i) {
//创建单元格对象,将内容及字体传入
PdfPCell cell=new PdfPCell(new Paragraph(str,font));
// 设置单元格的水平对齐方式 内容居中
cell.setHorizontalAlignment(Element.ALIGN_CENTER);
//设置单元格的垂直对齐方式
cell.setVerticalAlignment(Element.ALIGN_MIDDLE);
//将该单元格所在列包括该单元格在内的i行单元格合并为一个单元格
cell.setRowspan(i);
return cell;
}
/**
* 合并列的静态函数
* @param str 文本
* @param font 字体
* @param i 列数
* @return
*/
public static PdfPCell mergeCol(String str,Font font,int i) {
PdfPCell cell=new PdfPCell(new Paragraph(str,font));
cell.setMinimumHeight(25);
cell.setHorizontalAlignment(Element.ALIGN_CENTER);
cell.setVerticalAlignment(Element.ALIGN_MIDDLE);
//将该单元格所在行包括该单元格在内的i列单元格合并为一个单元格
cell.setColspan(i);
return cell;
}
/**
* 获取指定内容与字体的单元格
* @param string 文本
* @param font 字体
* @return
*/
public static PdfPCell getPDFCell(String string, Font font){
//创建单元格对象,将内容与字体放入段落中作为单元格内容
PdfPCell cell=new PdfPCell(new Paragraph(string,font));
cell.setHorizontalAlignment(Element.ALIGN_CENTER);
cell.setVerticalAlignment(Element.ALIGN_MIDDLE);
//设置最小单元格高度
cell.setMinimumHeight(25);
return cell;
}
/**
* 下载生成的PDF
* @param path
* @param response
*/
public static void download(String path, HttpServletResponse response) {
InputStream in = null;
OutputStream out = null;
try {
File file = new File(path);
/* 读取要下载的文件,保存到文件输入流 */
in = new FileInputStream(file);
/* 设置响应头,控制浏览器下载该文件 */
response.setCharacterEncoding("UTF-8");
response.setContentType("application/octet-stream");
response.setHeader("Content-disposition",
"attachment; filename=" + new String(file.getName().getBytes("UTF-8"), "ISO8859-1"));
/* 创建缓冲输出流 */
out = new BufferedOutputStream(response.getOutputStream());
/* 定义缓冲区大小,开始读写 */
byte[] buffer = new byte[2048];
int len = 0;
while ((len = in.read(buffer)) > 0) {
out.write(buffer, 0, len);
}
/* 刷新缓冲区,写出 */
out.flush();
in.close();
} catch (IOException ex) {
ex.printStackTrace();
}
}
/***
* 删除生成的PDF
* @param path
*/
public void deleteAll(String path) {
if(StringUtils.isBlank(path)){
return;
}
File file= new File(path);
if (file.isFile() || file.list().length == 0) {
file.delete();
}
}
}
##服务端导出
import com.itextpdf.text.*;
import com.itextpdf.text.pdf.BaseFont;
import com.itextpdf.text.pdf.PdfPCell;
import com.itextpdf.text.pdf.PdfPTable;
import com.itextpdf.text.pdf.PdfWriter;
import io.swagger.annotations.Api;
import io.swagger.annotations.ApiOperation;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.core.io.ClassPathResource;
import org.springframework.web.bind.annotation.*;
import javax.servlet.http.HttpServletResponse;
import java.io.*;
@RestController
@RequestMapping("/export/pdf")
@Api(tags="PDF导出接口")
public class ExportPdfController {
@ApiOperation("导出")
@PostMapping("/resume/{resumeId}")
public void exportResumePost( HttpServletResponse response) {
String filePath=null;
try {
filePath=generateUserInfoPdf();
download(filePath, response);
} catch (UnsupportedEncodingException e) {
e.printStackTrace();
} catch (IOException e) {
e.printStackTrace();
} catch (DocumentException e) {
e.printStackTrace();
}finally {
// 删除下载完的文件 static关键删除是无效的 所以此处需要new
ItextPdfUtils utils=new ItextPdfUtils();
utils.deleteAll(filePath);
}
}
}
<!-- PDF-->
<dependency>
<groupId>com.itextpdf</groupId>
<artifactId>itextpdf</artifactId>
<version>5.5.13.1</version>
</dependency>
##导出工具类
import com.itextpdf.text.*;
import com.itextpdf.text.pdf.*;
import org.apache.commons.lang.StringUtils;
import javax.servlet.http.HttpServletResponse;
import java.io.*;
public class ItextPdfUtils {
public static void main(String[] args) throws Exception{
// generateUserInfoPdf();
//addWaterMark("E:\\pdf\\1573416728776200.pdf","E:\\pdf\\1573416728776200OLod.pdf","水印pingoit",20,750);
//addWaterMarkImg("E:\\pdf\\1573416728776200.pdf","E:\\pdf\\1573416728776200OImage.pdf","E:\\pdf\\Watermark\\log.jpg",20,750);
ItextPdfUtils utils=new ItextPdfUtils();
//utils.deleteAll("E:\\\\project\\pdf\\测试2_.pdf");
}
/**
* 创建示例
* @throws IOException
* @throws DocumentException
*/
public static void generateUserInfoPdf() throws IOException, DocumentException {
//创建Document对象
Document doc=new Document(PageSize.A4,0,0,50,0);
//获得PdfWriter实例,将文档放到输出流上
PdfWriter.getInstance(doc, new FileOutputStream("E:\\pdf\\"+System.nanoTime()+".pdf"));
/*
* 由于itext不支持中文,所以需要进行字体的设置,我这里让itext调用windows系统的中文字体,
* 找到文件后,打开属性,将文件名及所在路径作为字体名即可。
*/
//创建BaseFont对象,指明字体,编码方式,是否嵌入
BaseFont bf=BaseFont.createFont("C:\\Windows\\Fonts\\simkai.ttf", BaseFont.IDENTITY_H, false);
//创建Font对象,将基础字体对象,字体大小,字体风格
Font font=new Font(bf,13,Font.NORMAL);
Font font1=new Font(bf,15,Font.BOLD);
Font fontTitle=new Font(bf,20,Font.BOLD);
// 一、个人基本资料及素质情况:
//创建PdfTable对象
PdfPTable table=new PdfPTable(5);
//设置各列的列宽
table.setTotalWidth(new float[]{100,140,100,140,120});
//添加表格内容
table.addCell(getPDFCell("姓名",font));
table.addCell(getPDFCell("张敏",font));
table.addCell(getPDFCell("性别",font));
table.addCell(getPDFCell("男",font));
//添加图片
Image img=Image.getInstance("E:\\pdf\\Watermark\\carp.png",true);
img.scaleAbsolute(0, 100);
PdfPCell cell=new PdfPCell(img);
cell.setRowspan(4);
table.addCell(cell);
table.addCell(getPDFCell("身份证",font));
table.addCell(getPDFCell("1111",font));
table.addCell(getPDFCell("出生年月",font));
table.addCell(getPDFCell("1991-01",font));
table.addCell(getPDFCell("院校",font));
table.addCell(getPDFCell("学校",font));
table.addCell(getPDFCell("学历",font));
table.addCell(getPDFCell("本科",font));
table.addCell(getPDFCell("专业",font));
table.addCell(getPDFCell("****",font));
table.addCell(getPDFCell("职位/职称",font));
table.addCell(getPDFCell("****",font));
table.addCell(getPDFCell("手机号",font));
table.addCell(getPDFCell("手机号",font));
table.addCell(getPDFCell("常驻地址",font));
cell=mergeCol("*********", font, 2);
table.addCell(cell);
table.addCell(getPDFCell("证书",font));
cell=mergeCol("证书", font, 4);
table.addCell(cell);
cell=mergeRow("专业技能", font, 6);
table.addCell(cell);
cell=mergeCol("高级******************", font, 4);
table.addCell(cell);
//二、教育背景(自大专开始填写):
//创建PdfTable对象
PdfPTable tableEducation=new PdfPTable(5);
//设置各列的列宽
tableEducation.setTotalWidth(new float[]{140,120,100,140,100});
tableEducation.addCell(getPDFCell("起止时间",font));
tableEducation.addCell(getPDFCell("学校",font));
tableEducation.addCell(getPDFCell("专业",font));
tableEducation.addCell(getPDFCell("就读形式",font));
tableEducation.addCell(getPDFCell("所获学历、学位",font));
for(int i=0;i<5;i++){
tableEducation.addCell(getPDFCell("年 月— 年 月",font));
tableEducation.addCell(getPDFCell("学校"+i,font));
tableEducation.addCell(getPDFCell("专业"+i,font));
tableEducation.addCell(getPDFCell("就读形式"+i,font));
tableEducation.addCell(getPDFCell("所获学历"+i,font));
}
//三、工作经历:
// 工作经验
//创建PdfTable对象
PdfPTable tableExperience=new PdfPTable(4);
//设置各列的列宽
tableExperience.setTotalWidth(new float[]{140,120,100,140});
tableExperience.addCell(getPDFCell("起止时间",font));
tableExperience.addCell(getPDFCell("工作",font));
tableExperience.addCell(getPDFCell("岗位",font));
tableExperience.addCell(getPDFCell("背调人",font));
for(int i=0;i<3;i++){
tableExperience.addCell(getPDFCell("年 月— 年 月",font));
tableExperience.addCell(getPDFCell("工作"+i,font));
tableExperience.addCell(getPDFCell("岗位"+i,font));
tableExperience.addCell(getPDFCell("背调"+i,font));
}
// 项目经验
//创建PdfTable对象
PdfPTable tableProjectExperience=new PdfPTable(4);
//设置各列的列宽
tableProjectExperience.setTotalWidth(new float[]{140,120,80,200});
tableProjectExperience.addCell(getPDFCell("参加时间",font));
tableProjectExperience.addCell(getPDFCell("项目名称",font));
tableProjectExperience.addCell(getPDFCell("项目角色",font));
tableProjectExperience.addCell(getPDFCell("工作内容描述",font));
for(int i=0;i<3;i++){
tableProjectExperience.addCell(getPDFCell("参加时间",font));
tableProjectExperience.addCell(getPDFCell("项目名称"+i,font));
tableProjectExperience.addCell(getPDFCell("项目角色"+i,font));
tableProjectExperience.addCell(getPDFCell("工作内容描述"+i,font));
}
//文档写入内容
doc.open();
Paragraph title=new Paragraph("信息表",fontTitle);
title.setSpacingBefore(25);
title.setSpacingAfter(25);
title.setAlignment(Paragraph.ALIGN_CENTER);
doc.add(title);
Paragraph titleOne=new Paragraph(" 一、个人基本资料",font1);
titleOne.setSpacingBefore(25);
titleOne.setSpacingAfter(25);
titleOne.setAlignment(Paragraph.ALIGN_LEFT);
doc.add(titleOne);
doc.add(table);
Paragraph titleEducation=new Paragraph(" 二、教育",font1);
//前 间距
titleEducation.setSpacingBefore(25);
// 后 间距
titleEducation.setSpacingAfter(25);
//对齐方式
titleEducation.setAlignment(Paragraph.ALIGN_LEFT);
doc.add(titleEducation);
doc.add(tableEducation);
Paragraph titleWork=new Paragraph(" 三、工作经历",font1);
titleWork.setSpacingBefore(25);
titleWork.setSpacingAfter(25);
titleWork.setAlignment(Paragraph.ALIGN_LEFT);
doc.add(titleWork);
Paragraph titleWorkExperience=new Paragraph(" (一)工作经验",font1);
titleWorkExperience.setAlignment(Paragraph.ALIGN_LEFT);
titleWorkExperience.setSpacingAfter(25);
doc.add(titleWorkExperience);
doc.add(tableExperience);
Paragraph titleProjectExperience=new Paragraph(" (二)项目经验",font1);
titleProjectExperience.setAlignment(Paragraph.ALIGN_LEFT);
titleProjectExperience.setSpacingBefore(25);
titleProjectExperience.setSpacingAfter(25);
doc.add(titleProjectExperience);
doc.add(tableProjectExperience);
Paragraph titleExplanation=new Paragraph("说明:本人承诺上。",font1);
titleExplanation.setAlignment(Paragraph.ALIGN_CENTER);
titleExplanation.setSpacingBefore(25);
titleExplanation.setSpacingAfter(25);
titleExplanation.setIndentationLeft(50);
titleExplanation.setIndentationRight(52);
doc.add(titleExplanation);
Paragraph titleSignature=new Paragraph("填报人: 年 月 日",font1);
titleSignature.setAlignment(Paragraph.ALIGN_RIGHT);
titleSignature.setIndentationRight(50);
doc.add(titleSignature);
doc.close();
}
/**
*
* 【功能描述:添加文字水印】 【功能详细描述:功能详细描述】
* @param srcFile 待加水印文件
* @param destFile 加水印后存放地址
* @param text 加水印的文本内容
* @param textWidth 文字横坐标
* @param textHeight 文字纵坐标
* @throws Exception
*/
public static void addWaterMark(String srcFile, String destFile, String text, int textWidth, int textHeight) throws Exception{
// 待加水印的文件
PdfReader reader = new PdfReader(srcFile);
// 加完水印的文件
PdfStamper stamper = new PdfStamper(reader, new FileOutputStream(destFile));
int total = reader.getNumberOfPages() + 1;
PdfContentByte content;
// 设置字体
BaseFont font = BaseFont.createFont();
// 循环对每页插入水印
for (int i = 1; i < total; i++){
// 水印的起始
content = stamper.getUnderContent(i);
// 开始
content.beginText();
// 设置颜色 默认为蓝色
content.setColorFill(BaseColor.BLUE);
// content.setColorFill(Color.GRAY);
// 设置字体及字号
content.setFontAndSize(font, 38);
// 设置起始位置
// content.setTextMatrix(400, 880);
content.setTextMatrix(textWidth, textHeight);
// 开始写入水印
content.showTextAligned(Element.ALIGN_LEFT, text, textWidth,textHeight, 45);
content.endText();
}
stamper.close();
}
/**
*
* 【功能描述:添加图片水印】 【功能详细描述:功能详细描述】
* @param srcFile 待加水印文件
* @param destFile 加水印后存放地址
* @param imageLog 加水印的文本内容
* @param inageX 横坐标
* @param inageY 纵坐标
* @throws Exception
*/
public static void addWaterMarkImg(String srcFile, String destFile, String imageLog, int inageX, int inageY) throws Exception{
// 待加水印的文件
PdfReader reader = new PdfReader(srcFile);
// 加完水印的文件
PdfStamper stamper = new PdfStamper(reader, new FileOutputStream(destFile));
int total = reader.getNumberOfPages() + 1;
PdfContentByte content;
// 设置水印透明度
PdfGState gs = new PdfGState();
// 设置笔触字体不透明度为0.4f
gs.setStrokeOpacity(0.4f);
// 循环对每页插入水印
for (int i = 1; i < total; i++){
// 水印的起始
content = stamper.getUnderContent(i);
Image image = Image.getInstance(imageLog);
// 设置坐标 绝对位置 X Y
image.setAbsolutePosition(inageX, inageY);
// 设置旋转弧度
// image.setRotation(30);// 旋转 弧度
// 设置旋转角度
// image.setRotationDegrees(45);// 旋转 角度
// 设置等比缩放
image.scalePercent(20);// 依照比例缩放
// image.scaleAbsolute(200,100);//自定义大小
// 设置透明度
content.setGState(gs);
// 添加水印图片
content.addImage(image);
// 设置透明度
content.setGState(gs);
//结束设置
content.stroke();
}
stamper.close();
}
/**
* 合并行的静态函数
* @param str 文本
* @param font 字体
* @param i 行数
* @return
*/
public static PdfPCell mergeRow(String str,Font font,int i) {
//创建单元格对象,将内容及字体传入
PdfPCell cell=new PdfPCell(new Paragraph(str,font));
// 设置单元格的水平对齐方式 内容居中
cell.setHorizontalAlignment(Element.ALIGN_CENTER);
//设置单元格的垂直对齐方式
cell.setVerticalAlignment(Element.ALIGN_MIDDLE);
//将该单元格所在列包括该单元格在内的i行单元格合并为一个单元格
cell.setRowspan(i);
return cell;
}
/**
* 合并列的静态函数
* @param str 文本
* @param font 字体
* @param i 列数
* @return
*/
public static PdfPCell mergeCol(String str,Font font,int i) {
PdfPCell cell=new PdfPCell(new Paragraph(str,font));
cell.setMinimumHeight(25);
cell.setHorizontalAlignment(Element.ALIGN_CENTER);
cell.setVerticalAlignment(Element.ALIGN_MIDDLE);
//将该单元格所在行包括该单元格在内的i列单元格合并为一个单元格
cell.setColspan(i);
return cell;
}
/**
* 获取指定内容与字体的单元格
* @param string 文本
* @param font 字体
* @return
*/
public static PdfPCell getPDFCell(String string, Font font){
//创建单元格对象,将内容与字体放入段落中作为单元格内容
PdfPCell cell=new PdfPCell(new Paragraph(string,font));
cell.setHorizontalAlignment(Element.ALIGN_CENTER);
cell.setVerticalAlignment(Element.ALIGN_MIDDLE);
//设置最小单元格高度
cell.setMinimumHeight(25);
return cell;
}
/**
* 下载生成的PDF
* @param path
* @param response
*/
public static void download(String path, HttpServletResponse response) {
InputStream in = null;
OutputStream out = null;
try {
File file = new File(path);
/* 读取要下载的文件,保存到文件输入流 */
in = new FileInputStream(file);
/* 设置响应头,控制浏览器下载该文件 */
response.setCharacterEncoding("UTF-8");
response.setContentType("application/octet-stream");
response.setHeader("Content-disposition",
"attachment; filename=" + new String(file.getName().getBytes("UTF-8"), "ISO8859-1"));
/* 创建缓冲输出流 */
out = new BufferedOutputStream(response.getOutputStream());
/* 定义缓冲区大小,开始读写 */
byte[] buffer = new byte[2048];
int len = 0;
while ((len = in.read(buffer)) > 0) {
out.write(buffer, 0, len);
}
/* 刷新缓冲区,写出 */
out.flush();
in.close();
} catch (IOException ex) {
ex.printStackTrace();
}
}
/***
* 删除生成的PDF
* @param path
*/
public void deleteAll(String path) {
if(StringUtils.isBlank(path)){
return;
}
File file= new File(path);
if (file.isFile() || file.list().length == 0) {
file.delete();
}
}
}
##服务端导出
import com.itextpdf.text.*;
import com.itextpdf.text.pdf.BaseFont;
import com.itextpdf.text.pdf.PdfPCell;
import com.itextpdf.text.pdf.PdfPTable;
import com.itextpdf.text.pdf.PdfWriter;
import io.swagger.annotations.Api;
import io.swagger.annotations.ApiOperation;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.core.io.ClassPathResource;
import org.springframework.web.bind.annotation.*;
import javax.servlet.http.HttpServletResponse;
import java.io.*;
@RestController
@RequestMapping("/export/pdf")
@Api(tags="PDF导出接口")
public class ExportPdfController {
@ApiOperation("导出")
@PostMapping("/resume/{resumeId}")
public void exportResumePost( HttpServletResponse response) {
String filePath=null;
try {
filePath=generateUserInfoPdf();
download(filePath, response);
} catch (UnsupportedEncodingException e) {
e.printStackTrace();
} catch (IOException e) {
e.printStackTrace();
} catch (DocumentException e) {
e.printStackTrace();
}finally {
// 删除下载完的文件 static关键删除是无效的 所以此处需要new
ItextPdfUtils utils=new ItextPdfUtils();
utils.deleteAll(filePath);
}
}
}
上一篇: springboot 单个参数校验
下一篇: docker tomcat 挂载