- 浏览: 54644 次
- 性别:
- 来自: 成都
文章分类
- 全部博客 (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 1783@Cacheable(value = {"user ... -
aspose word转PDF乱码
2020-03-04 17:07 1161创建字体目录 mkdir /usr/share/fonts/w ... -
springboot 单个参数校验
2019-12-12 16:40 1090import io.swagger.annotations. ... -
注解校验 手机号、身份证
2019-11-29 10:36 1802@Data @ApiModel public clas ... -
注解级联校验 对象中的list
2019-11-29 09:34 1384级联校验的关键 在list上加 @Valid 在需要校验的l ... -
Swagger接口注解及表单校验、分组校验
2019-11-10 16:45 1868先讲解以下几个关键点 表单校验的关键在于注解:@Valida ... -
The error may involve org.activiti.engine.impl.persistence.entity.PropertyEntity
2019-09-27 11:29 1703org.apache.ibatis.exceptions.Pe ... -
Spring Boot 2.1 +mybatisPlus3.1.2+activiti6整合
2019-09-23 11:49 640Description: An attempt w ... -
emoji 表情存储
2018-12-26 11:41 703public static void main(String[ ... -
json 取值
2018-07-06 15:57 967String jsonList="{" ... -
json 取值
2018-07-06 15:47 1148Gson gson = new Gson(); Map&l ... -
FFmpeg Java截取图片
2017-10-06 17:04 778package cn.test; import jav ... -
查询字符串中包含字符串
2017-09-20 10:58 595在jdbc的MySQL中可以不用写比较符,比如: s ... -
比较两个数组中是否有相同的值
2017-09-06 10:46 3329//两个数组中重复的元素 String[] str1={1 ... -
获取昨天、今天、上周、本周、本季度、本月、上月的开始日期、结束日期
2017-09-04 11:41 953/** * 获取昨天、今天、上周、本周、本季度、本年、本月 ... -
mySql 时间段查询
2017-07-23 18:27 779select * from 表名 where to_days( ... -
定时任务
2017-06-28 17:14 458package com.gunxq.Task; import ... -
dataTables的鼠标移入移出,分割内容
2017-01-02 11:21 448/*鼠标移入移出*/ <style type=&qu ... -
jstree 树默认选中子节点
2016-12-26 22:29 5901相信很多人都在为 ... -
table 切换地图
2019-09-23 11:49 491<script type="text/java ...
相关推荐
1. **iTextPDF**: iTextPDF是iText项目的一部分,它提供了丰富的API来生成、修改和解析PDF文档。5.5.5版本是iText的一个较新版本,增加了许多功能和性能优化。例如,它可以创建动态表单、添加图像、设置文本样式、...
以下是一些关于如何使用iText生成PDF的关键知识点: 1. **安装与获取iText**: 要使用iText,首先需要从其官方源代码托管平台SourceForge下载相应的.jar文件。基础的iText.jar提供了基本的PDF生成功能,但如果你...
在这个"Struts2+IText动态导出PDF示例源码"项目中,开发者利用这两者结合,实现了在Web应用中动态生成PDF文件的功能。这在报表生成、合同制作、证书打印等场景中非常实用。 首先,Struts2作为控制器层框架,负责...
在Android平台上,生成和读取PDF文件是一项常见的需求,特别是在数据导出、报告生成或文档共享等场景。iText是一个强大的开源库,它允许开发者在Java和.NET环境中创建、编辑和处理PDF文档。在这个场景中,我们将探讨...
这篇博客 "freemarker+itext生成PDF" 可能详细介绍了如何结合这两者来生成PDF文件,这在报表生成、发票打印或任何需要静态化输出的场景中非常有用。 首先,让我们了解FreeMarker。FreeMarker是一个基于模板的语言,...
document.add(new Paragraph("这是使用IText生成的PDF文档!")); document.close(); } catch (DocumentException | IOException e) { e.printStackTrace(); } } } ``` 这段代码首先创建了一个`Document`对象...
iText生成pdf解决中文不显示字库,pdf凉字不显示,由于生成iText插件生成pdf的时候中文会显示不出来,遇到过的是"凉"字,查到是字体库的原因,网上下载字体库msyh.ttc,生成的时候指定字体库,就可以解决了,小bug一...
Java使用IText库导出PDF是一项常见的任务,特别是在需要生成报告、文档或发票等静态内容时。IText是一个强大的PDF库,它允许开发者在Java环境中创建、修改和处理PDF文档。下面将详细介绍如何使用IText库来实现这个...
通过实践和调试,你可以掌握利用iText从数据库导出大量数据到PDF文档的技能,这在报表生成、数据导出等方面非常实用。 总之,iText是一个强大且灵活的工具,它使得在Java应用中处理PDF文档变得简单。结合数据库技术...
Itext导出PDF,中文不显示字体,在body上设置font-family: "Arial Unicode MS",同时在java中引入fontResolver.addFont("/ARIALUNI.TTF", BaseFont.IDENTITY_H, BaseFont.NOT_EMBEDDED); 就可以显示中文了
在这个场景中,我们将探讨如何使用iTextPDF来根据模板生成包含表单、表格、条形码和二维码的PDF文档。以下是一个详细的步骤和知识点介绍: 1. **引入iTextPDF库** 首先,你需要在你的项目中添加iTextPDF依赖。如果...
总结一下,要实现在Spring Boot应用中使用iText生成带有页眉、页码、水印、目录和二维码的PDF,你需要: 1. 引入iText及相关库。 2. 创建HTML页面并将其转换为PDF。 3. 定制PDF内容,包括添加页眉、页码和水印。 4. ...
java使用iText导出PDF文本绝对定位(实现方法) iText是一个流行的Java类库,用于生成PDF文档。下面我们将探讨如何使用iText在Java中导出PDF...我们希望本篇文章能够给您一个参考,帮助您更好地使用iText生成PDF文档。
在IT行业中,生成PDF文件是一项常见的任务,特别是在文档制作、报表导出以及数据展示等领域。iText是一个流行的Java库,专门用于创建和编辑PDF文档。本文将深入探讨iText如何生成包含表格的PDF文件,同时结合提供的...
Paragraph paragraph = new Paragraph("这是用Itext生成的PDF文档"); document.add(paragraph); ``` ### 5. 格式化文本 Itext支持多种文本格式化,如字体、大小、颜色等。例如: ```java Font font = new Font...
对于初学者来说,掌握使用iText生成PDF文档中的表格、一维条形码和图片是一项基本技能。此外,需要注重代码中字符串的准确性,避免由于扫描或输入错误导致的问题。熟练掌握iText库的使用,可以使开发者在处理PDF文件...
总结起来,"Velocity+Itext导出PDF"是一种高效且灵活的方式,可以将动态数据和预定义的模板结合,生成高质量的PDF文档。通过熟练掌握这两个工具的使用,开发者可以创建出满足各种需求的PDF文档生成系统。
本文将深入探讨如何使用ITEXT库导出PDF和Word,以及利用Apache POI库导出Excel报表文件。 首先,让我们来了解ITEXT库。ITEXT是一个开源Java库,专门用于创建和修改PDF文档。使用ITEXT,你可以方便地生成包含文本、...
这个简单的demo展示了如何利用Itext库将数据导出为PDF格式,非常适合初学者理解和实践。下面,我们将深入探讨这个知识点,以及如何一步步实现这个功能。 首先,你需要在你的项目中引入ItextSharp库。ItextSharp是...
在描述中提到的"itext html导出pdf",通常涉及到以下几个步骤: 1. **HTML解析**:首先,我们需要解析HTML内容。这通常通过第三方库如Jsoup或Apache POI完成,它们能够解析HTML文档并提取所需的数据结构。 2. **...