婷婷综合国产,91蜜桃婷婷狠狠久久综合9色 ,九九九九九精品,国产综合av

主頁 > 知識庫 > html轉pdf截圖保存功能的實現

html轉pdf截圖保存功能的實現

熱門標簽:貴陽ai外呼系統 電話機器人批發 強訊外呼系統 智能電銷機器人廣告語 長春極信防封電銷卡公司 愛巢地圖標注 crm外呼系統好不好 電銷外呼線路改不外呼線路 重慶人工智能電銷機器人報價

使用技術

itext.jar  : 將byte文件輸入流轉換為圖片,pdf等

html2canvas.js :將html頁面區域截圖為base64編碼的圖片資源

java+js

1. 準備資源

itext.jar
 www.baidu.com

html2canvas.js
www.baidu.com

2.前端代碼:

//進行截圖操作,document.querySelector("body") 為要截圖的區域
     function test() {
            html2canvas(document.querySelector("body"), {
                onrendered: function (canvas) {
                    var dataUrl = canvas.toDataURL('image/png');
                    var formData = new FormData(); //模擬表單對象
                    formData.append("imgData", convertBase64UrlToBlob(dataUrl)); //寫入數據
                    var xhr = new XMLHttpRequest(); //數據傳輸方法
                    xhr.open("POST", "http://localhost:8080/pdf"); //配置傳輸方式及地址
                    xhr.send(formData);
                    xhr.onreadystatechange = function () { //回調函數
                    };
                }
            });
        }

        //格式化圖片base64編碼轉換為byte文件流
        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 s = 0;s<bytes.length;s++){
                ia[s] = bytes.charCodeAt(s);
            }
            return new Blob( [ab] , {type : 'image/png'});
        }
        
        <body onclick="test()">//調用截圖方法即可

3.后端代碼:

@RequestMapping(value = "/pdf",method = RequestMethod.POST)
    public void test(MultipartHttpServletRequest request, HttpServletResponse response) throws IOException {
        String filePath = "D:\\blog\\exportPdf2.pdf";
        String imagePath = "D:\\blog\\exportImg2.png";
        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.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();

        }catch (DocumentException de) {
            System.err.println(de.getMessage());
        }
        catch (Exception e) {
            e.printStackTrace();

        }
    }

    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;
    }

4 包名

import com.itextpdf.text.Document;
import com.itextpdf.text.DocumentException;
import com.itextpdf.text.Image;
import com.itextpdf.text.Paragraph;
import com.itextpdf.text.pdf.PdfWriter;
import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
import org.springframework.stereotype.Controller;
import org.springframework.util.FileCopyUtils;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RequestMethod;
import org.springframework.web.multipart.MultipartFile;
import org.springframework.web.multipart.MultipartHttpServletRequest;

import javax.imageio.stream.FileImageOutputStream;
import javax.servlet.http.HttpServletResponse;
import java.io.File;
import java.io.FileOutputStream;
import java.io.IOException;
import java.io.InputStream;
import java.util.Map;

4 前端截圖,訪問后端接口,保存截圖文件到本地為pdf或者其他格式的文件。

 有興趣的同學可以把后端改為下載文件到本地

5 項目源碼地址

https://github.com/zhangjy520/learn_java/tree/master/boot 

到此這篇關于html轉pdf截圖保存功能的實現的文章就介紹到這了,更多相關html轉pdf截圖保存內容請搜索腳本之家以前的文章或繼續瀏覽下面的相關文章,希望大家以后多多支持腳本之家!

標簽:山南 內蒙古 保定 陜西 廣安 清遠 上海 吳忠

巨人網絡通訊聲明:本文標題《html轉pdf截圖保存功能的實現》,本文關鍵詞  html,轉,pdf,截圖,保存,功能,;如發現本文內容存在版權問題,煩請提供相關信息告之我們,我們將及時溝通與處理。本站內容系統采集于網絡,涉及言論、版權與本站無關。
  • 相關文章
  • 下面列出與本文章《html轉pdf截圖保存功能的實現》相關的同類信息!
  • 本頁收集關于html轉pdf截圖保存功能的實現的相關信息資訊供網民參考!
  • 推薦文章
    主站蜘蛛池模板: 天长市| 偃师市| 钟祥市| 大化| 彝良县| 贞丰县| 永川市| 鄄城县| 黄骅市| 北安市| 徐州市| 永善县| 新郑市| 昂仁县| 庆云县| 合山市| 潞西市| 元阳县| 邓州市| 东辽县| 徐水县| 尖扎县| 沂源县| 英德市| 临桂县| 独山县| 光山县| 日喀则市| 北京市| 新源县| 富平县| 茂名市| 湘西| 惠东县| 关岭| 桃源县| 调兵山市| 江门市| 林西县| 宣威市| 集贤县|