瀏覽器檢視Base64的PDF檔案內容

Nine_Jason發表於2024-12-03

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檔案

相關文章