html頁面保存成圖片,圖片寫入pdf

需求是一個導出pdf的功能,多方奔走終於實現了,走了很多彎路,並且懷疑如今這個方法還是彎的。html

有個jsPDF 插件能夠在前端直接生成pdf,很簡便,但不支持IE。前端

前端:java

首先引入  html2canvas.jscanvas

html2canvas(document.body, {  //截圖對象
         //此處可配置詳細參數
         onrendered: function(canvas) {  //渲染完成回調canvas
             canvas.id = "mycanvas";  
             // 生成base64圖片數據
             var dataUrl = canvas.toDataURL('image/png');   //指定格式,也可不帶參數
             var formData = new FormData();  //模擬表單對象
             formData.append("imgData",convertBase64UrlToBlob(dataUrl)); //寫入數據
             var xhr = new XMLHttpRequest();  //數據傳輸方法
             xhr.open("POST", "../bulletin/exportPdf");  //配置傳輸方式及地址
             xhr.send(formData);
             xhr.onreadystatechange = function(){  //回調函數
            	 if(xhr.readyState == 4){
            	        if (xhr.status == 200) {
            	         	 var back = JSON.parse(xhr.responseText);
            	         	 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);


後端:app

導入 itext jar包

@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 = request.getFileMap();
		MultipartFile mfile = (MultipartFile) getMap.get("imgData");  //獲取數據
		InputStream file = mfile.getInputStream();
		byte[] fileByte = FileCopyUtils.copyToByteArray(file);
			
		FileImageOutputStream imageOutput = new FileImageOutputStream(new File(imagePath));//打開輸入流
		imageOutput.write(fileByte, 0, fileByte.length);//生成本地圖片文件
		imageOutput.close();
			
		PdfWriter.getInstance(document, new FileOutputStream(filePath));  //itextpdf文件
//		document.setPageSize(PageSize.A2);
		document.open();
		document.add(new Paragraph("JUST TEST ..."));
		Image image = Image.getInstance(imagePath);  //itext-pdf-image
		float heigth = image.getHeight(); 
                float width = image.getWidth(); 
                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) {
		System.err.println(de.getMessage());
	}
	catch (Exception e) {
		e.printStackTrace();
		result.setSuccess(false);
		result.setErrorMessage(e.toString());
		try {
			operatelogService.addOperateLogError(request, "導出失敗:服務器異常");
		} catch (Exception e1) {
			e1.printStackTrace();
		}
	}
	response.getWriter().print(JSONObject.fromObject(result).toString());
}

private static int getPercent2(float h, float w) {
	int p = 0;
	float p2 = 0.0f;
	p2 = 530 / w * 100;
	p = Math.round(p2);
	return p;
}

iText是著名的開放源碼的站點sourceforge一個項目,是用於生成PDF文檔的一個java類庫。

處理速度快,支持不少PDF"高級"特性。

可是itext出錯的時候不會報錯,直接跳過去,回頭看pdf文檔損壞,找不到出錯緣由,真是急死人。

最後感謝網絡上有關的博文和貼子以及百度搜索。

相關文章
相關標籤/搜索