JavaScript+Java实现HTML页⾯转为PDF⽂件保存的⽅法需求是⼀个导出pdf的功能,多⽅奔⾛终于实现了,⾛了不少弯路,⽽且怀疑现在这个⽅法仍是弯的。
有个jsPDF 插件可以在前端直接⽣成pdf,很简便,但不⽀持IE。
前端:
⾸先引⼊ html2canvas.js
html2canvas(document.body, { //截图对象
//此处可配置详细参数
onrendered: function(canvas) { //渲染完成回调canvas
canvas.id = "mycanvas";
// ⽣成base64图⽚数据
var dataUrl = DataURL('image/png'); //指定格式,也可不带参数
var formData = new FormData(); //模拟表单对象
formData.append("imgData",convertBase64UrlToBlob(dataUrl)); //写⼊数据
var xhr = new XMLHttpRequest(); //数据传输⽅法
xhr.open("POST", "../bulletin/exportPdf"); //配置传输⽅式及地址
xhr.send(formData);
adyState == 4){
if (xhr.status == 200) {
var back = JSON.sponseText);
if(back.success == true){
alertBox({content: 'Pdf导出成功!',lock: true,drag: false,ok: true});
}else{
alertBox({content: 'Pdf导出失败!',lock: true,drag: false,ok: true});
}
}
}
};
}
});
//将以base64的图⽚url数据转换为Blob
function convertBase64UrlToBlob(urlData){
//去掉url的头,并转换为byte
var bytes=window.atob(urlData.split(',')[1]);
/
/处理异常,将ascii码⼩于0的转换为⼤于0
var ab = new ArrayBuffer(bytes.length);
var ia = new Uint8Array(ab);
for (var i = 0; i < bytes.length; i++) {
ia[i] = bytes.charCodeAt(i);
}
return new Blob( [ab] , {type : 'image/png'});
}
兼容性:Firefox 3.5+, Chrome, Opera, IE10+
不⽀持:iframe,浏览器插件,Flash
跨域图⽚需要在跨域服务器header加上允许跨域请求
access-control-allow-origin: * access-control-allow-credentials: true
svg图⽚不能直接⽀持,已经有补丁包了,不过我没有试过。
IE9不⽀持FormData数据格式,也不⽀持Blob,这种情况下将canvas⽣成的64base字符串去掉url头之后直接传给后台,后台接收之后:
String base64 = Img.split(",")[1];
BASE64Decoder decode = new BASE64Decoder();
byte[] imgByte = decode.decodeBuffer(base64);
后端:
@RequestMapping("/exportPdf")
public @ResponseBody void exportPdf(MultipartHttpServletRequest request,HttpServletResponse response)throws ServletException, IOException { ResultData result = new ResultData(); //⾃定义结果格式
String filePath = "c:\\exportPdf2.pdf";
String imagePath = "c:\\exportImg2.bmp";
Document document = new Document();
try{
Map getMap = FileMap();
MultipartFile mfile = (MultipartFile) ("imgData"); //获取数据java修改html文件
InputStream file = InputStream();
byte[] fileByte = pyToByteArray(file);
FileImageOutputStream imageOutput = new FileImageOutputStream(new File(imagePath));//打开输⼊流
imageOutput.write(fileByte, 0, fileByte.length);//⽣成本地图⽚⽂件
imageOutput.close();
// document.setPageSize(PageSize.A2);
document.open();
document.add(new Paragraph("JUST TEST ..."));
Image image = Instance(imagePath); //itext-pdf-image
float heigth = Height();
float width = Width();
int percent = getPercent2(heigth, width); //按⽐例缩⼩图⽚
image.setAlignment(Image.MIDDLE);
image.scalePercent(percent+3);
document.add(image);
document.close();
result.setSuccess(true);
operatelogService.addOperateLogInfo(request, "导出成功:成功导出简报Pdf");
}catch (DocumentException de) {
}
catch (Exception e) {
e.printStackTrace();
result.setSuccess(false);
result.String());
try {
operatelogService.addOperateLogError(request, "导出失败:服务器异常");
} catch (Exception e1) {
e1.printStackTrace();
}
}
}
private static int getPercent2(float h, float w) {
int p = 0;
float p2 = 0.0f;
p2 = 530 / w * 100;
p = und(p2);
return p;
}
iText是著名的开放源码的站点sourceforge⼀个项⽬,是⽤于⽣成PDF⽂档的⼀个java类库。
处理速度快,⽀持很多PDF"⾼级"特性。
版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系QQ:729038198,我们将在24小时内删除。
发表评论