1.新建Html檔案
2.複製以下程式碼
<body> <embed id="mainpdf" type="application/pdf" width="600" height="600"> </body> <script> var basedata = "PDFBase64位資料"; var newbasedata = "data:application/pdf;base64," + basedata; var dom = document.getElementById("mainpdf"); if(dom!= null) { dom.setAttribute("src",newbasedata); } </script>
3.替換Base64資料
4.使用瀏覽器開啟Html檔案