- 浏览: 54334 次
- 性别:
- 来自: 成都
文章分类
- 全部博客 (52)
- web前端 (15)
- java开发 (22)
- hibernate (1)
- ebean (1)
- spring (2)
- Struts2 (0)
- 服务器 (2)
- 数据库 (4)
- 注解 (1)
- Maven (2)
- 项目管理工具 (1)
- 项目地图 (1)
- sql (6)
- Redis (2)
- dataTables (1)
- Excel (1)
- easyUI (2)
- FFmpeg (2)
- mySql (1)
- Linux (1)
- websocket (1)
- Spring Boot (7)
- mybatisPlus (1)
- activiti (2)
- java开发,Swagger (1)
- docker (2)
- aspose (1)
- Rocketmq (1)
最新评论
## 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);
}
}
}
发表评论
-
cacheable 将一个对象作为key
2020-09-02 11:48 1775@Cacheable(value = {"user ... -
aspose word转PDF乱码
2020-03-04 17:07 1158创建字体目录 mkdir /usr/share/fonts/w ... -
springboot 单个参数校验
2019-12-12 16:40 1086import io.swagger.annotations. ... -
注解校验 手机号、身份证
2019-11-29 10:36 1789@Data @ApiModel public clas ... -
注解级联校验 对象中的list
2019-11-29 09:34 1371级联校验的关键 在list上加 @Valid 在需要校验的l ... -
Swagger接口注解及表单校验、分组校验
2019-11-10 16:45 1854先讲解以下几个关键点 表单校验的关键在于注解:@Valida ... -
The error may involve org.activiti.engine.impl.persistence.entity.PropertyEntity
2019-09-27 11:29 1690org.apache.ibatis.exceptions.Pe ... -
Spring Boot 2.1 +mybatisPlus3.1.2+activiti6整合
2019-09-23 11:49 638Description: An attempt w ... -
emoji 表情存储
2018-12-26 11:41 697public static void main(String[ ... -
json 取值
2018-07-06 15:57 967String jsonList="{" ... -
json 取值
2018-07-06 15:47 1144Gson gson = new Gson(); Map&l ... -
FFmpeg Java截取图片
2017-10-06 17:04 772package cn.test; import jav ... -
查询字符串中包含字符串
2017-09-20 10:58 591在jdbc的MySQL中可以不用写比较符,比如: s ... -
比较两个数组中是否有相同的值
2017-09-06 10:46 3326//两个数组中重复的元素 String[] str1={1 ... -
获取昨天、今天、上周、本周、本季度、本月、上月的开始日期、结束日期
2017-09-04 11:41 950/** * 获取昨天、今天、上周、本周、本季度、本年、本月 ... -
mySql 时间段查询
2017-07-23 18:27 775select * from 表名 where to_days( ... -
定时任务
2017-06-28 17:14 456package com.gunxq.Task; import ... -
dataTables的鼠标移入移出,分割内容
2017-01-02 11:21 439/*鼠标移入移出*/ <style type=&qu ... -
jstree 树默认选中子节点
2016-12-26 22:29 5890相信很多人都在为 ... -
table 切换地图
2019-09-23 11:49 487<script type="text/java ...
相关推荐
pandas whl安装包,对应各个python版本和系统(具体看资源名字),找准自己对应的下载即可! 下载后解压出来是已.whl为后缀的安装包,进入终端,直接pip install pandas-xxx.whl即可,非常方便。 再也不用担心pip联网下载网络超时,各种安装不成功的问题。
基于java的大学生兼职信息系统答辩PPT.pptx
基于java的乐校园二手书交易管理系统答辩PPT.pptx
tornado-6.4-cp38-abi3-musllinux_1_1_i686.whl
Android Studio Ladybug 2024.2.1(android-studio-2024.2.1.10-mac.dmg)适用于macOS Intel系统,文件使用360压缩软件分割成两个压缩包,必须一起下载使用: part1: https://download.csdn.net/download/weixin_43800734/89954174 part2: https://download.csdn.net/download/weixin_43800734/89954175
有学生和教师两种角色 登录和注册模块 考场信息模块 考试信息模块 点我收藏 功能 监考安排模块 考场类型模块 系统公告模块 个人中心模块: 1、修改个人信息,可以上传图片 2、我的收藏列表 账号管理模块 服务模块 eclipse或者idea 均可以运行 jdk1.8 apache-maven-3.6 mysql5.7及以上 tomcat 8.0及以上版本
tornado-6.1b2-cp38-cp38-macosx_10_9_x86_64.whl
Android Studio Ladybug 2024.2.1(android-studio-2024.2.1.10-mac.dmg)适用于macOS Intel系统,文件使用360压缩软件分割成两个压缩包,必须一起下载使用: part1: https://download.csdn.net/download/weixin_43800734/89954174 part2: https://download.csdn.net/download/weixin_43800734/89954175
matlab
基于java的毕业生就业信息管理系统答辩PPT.pptx
随着高等教育的普及和毕业设计的日益重要,为了方便教师、学生和管理员进行毕业设计的选题和管理,我们开发了这款基于Web的毕业设计选题系统。 该系统主要包括教师管理、院系管理、学生管理等多个模块。在教师管理模块中,管理员可以新增、删除教师信息,并查看教师的详细资料,方便进行教师资源的分配和管理。院系管理模块则允许管理员对各个院系的信息进行管理和维护,确保信息的准确性和完整性。 学生管理模块是系统的核心之一,它提供了学生选题、任务书管理、开题报告管理、开题成绩管理等功能。学生可以在此模块中进行毕业设计的选题,并上传任务书和开题报告,管理员和教师则可以对学生的报告进行审阅和评分。 此外,系统还具备课题分类管理和课题信息管理功能,方便对毕业设计课题进行分类和归档,提高管理效率。在线留言功能则为学生、教师和管理员提供了一个交流互动的平台,可以就毕业设计相关问题进行讨论和解答。 整个系统设计简洁明了,操作便捷,大大提高了毕业设计的选题和管理效率,为高等教育的发展做出了积极贡献。
这个数据集来自世界卫生组织(WHO),包含了2000年至2015年期间193个国家的预期寿命和相关健康因素的数据。它提供了一个全面的视角,用于分析影响全球人口预期寿命的多种因素。数据集涵盖了从婴儿死亡率、GDP、BMI到免疫接种覆盖率等多个维度,为研究者提供了丰富的信息来探索和预测预期寿命。 该数据集的特点在于其跨国家的比较性,使得研究者能够识别出不同国家之间预期寿命的差异,并分析这些差异背后的原因。数据集包含22个特征列和2938行数据,涉及的变量被分为几个大类:免疫相关因素、死亡因素、经济因素和社会因素。这些数据不仅有助于了解全球健康趋势,还可以辅助制定公共卫生政策和社会福利计划。 数据集的处理包括对缺失值的处理、数据类型转换以及去重等步骤,以确保数据的准确性和可靠性。研究者可以使用这个数据集来探索如教育、健康习惯、生活方式等因素如何影响人们的寿命,以及不同国家的经济发展水平如何与预期寿命相关联。此外,数据集还可以用于预测模型的构建,通过回归分析等统计方法来预测预期寿命。 总的来说,这个数据集是研究全球健康和预期寿命变化的宝贵资源,它不仅提供了历史数据,还为未来的研究和政策制
基于微信小程序的高校毕业论文管理系统小程序答辩PPT.pptx
基于java的超市 Pos 收银管理系统答辩PPT.pptx
基于java的网上报名系统答辩PPT.pptx
基于java的网上书城答辩PPT.pptx
婚恋网站 SSM毕业设计 附带论文 启动教程:https://www.bilibili.com/video/BV1GK1iYyE2B
基于java的戒烟网站答辩PPT.pptx
基于微信小程序的“健康早知道”微信小程序答辩PPT.pptx
Capital Bikeshare 数据集是一个包含从2020年5月到2024年8月的自行车共享使用情况的数据集。这个数据集记录了华盛顿特区Capital Bikeshare项目中自行车的租赁模式,包括了骑行的持续时间、开始和结束日期时间、起始和结束站点、使用的自行车编号、用户类型(注册会员或临时用户)等信息。这些数据可以帮助分析和预测自行车共享系统的需求模式,以及了解用户行为和偏好。 数据集的特点包括: 时间范围:覆盖了四年多的时间,提供了长期的数据观察。 细节丰富:包含了每次骑行的详细信息,如日期、时间、天气条件、季节等,有助于深入分析。 用户分类:数据中区分了注册用户和临时用户,可以分析不同用户群体的使用习惯。 天气和季节因素:包含了天气情况和季节信息,可以研究这些因素对骑行需求的影响。 通过分析这个数据集,可以得出关于自行车共享使用模式的多种见解,比如一天中不同时间段的使用高峰、不同天气条件下的使用差异、季节性变化对骑行需求的影响等。这些信息对于城市规划者、交通管理者以及自行车共享服务提供商来说都是非常宝贵的,可以帮助他们优化服务、提高效率和满足用户需求。同时,这个数据集也