欢迎来到尧图网

客户服务 关于我们

您的位置:首页 > 新闻 > 社会 > pdfh5 pdf

pdfh5 pdf

2025/4/3 12:15:35 来源:https://blog.csdn.net/qq_41985405/article/details/146505260  浏览:    关键词:pdfh5 pdf

踩坑1: 渲染失败

(1)在vue项目中,读取本地的pdf文件需要放到public下static文件夹中,不能放在别的地方;

(2)引用时,不能使用相对路径,因为使用public文件下面的资源,是不会被webpack处理的,它们会被直接复制到最终的打包目录下面,且必须使用绝对路径来引用这些文件。写法:“/static/pdf/show.pdf",/即表示public文件夹(需略去public);

文档:

https://www.npmjs.com/package/pdfh5

安装:

npm install pdfh5 --legacy-peer-deps
npm install --save canvas --legacy-peer-deps
<script setup>
import { ref } from 'vue'
import Pdfh5 from 'pdfh5'
import 'pdfh5/css/pdfh5.css'// pdfh5实例
const pdfh5 = ref(null)// pdf预览
const handlePreview = () => {pdfh5.value = new Pdfh5('#demo', {pdfurl: '/static/1.pdf',  // 读取本地的pdf文件需要放到public下static文件夹中})
}const beforeRead = (file) => {if (file.type == 'application/pdf') {// 使用类型化数组(Uint8Array)可以提高内存使用率。let reader = new FileReader()reader.readAsArrayBuffer(file)reader.onload = (loadEvent) => {let arrayBuffer = loadEvent.target.resultpdfh5.value = new Pdfh5('#demo', {data: arrayBuffer,})}}return true
}const afterRead = (file) => {// file.content是BASE64// PDF数据是BASE64编码的,请先使用atob()将其转换为二进制字符串// const data = atob(file.content.replace('data:application/pdf;base64,', '')) // 去除BASE64编码的头// pdfh5.value = new Pdfh5('#demo', {//   data// })
}
</script><template><div class="home-page"><header class="header"><van-button type="default" @click="handlePreview" style="margin-right: 8px;">通过pdfurl预览</van-button><van-uploader accept=".pdf" :before-read="beforeRead" :after-read="afterRead"><van-button icon="plus" type="primary">通过pdf文件流预览</van-button></van-uploader></header><main class="main"><div id="demo"></div></main></div>
</template><style>
.home-page {width: 100%;height: 100%;.header {height: 50px;display: flex;align-items: center;}.main {height: calc(100% - 50px);}#demo {width: 100%;height: 100%;}
}
</style>

版权声明:

本网仅为发布的内容提供存储空间,不对发表、转载的内容提供任何形式的保证。凡本网注明“来源:XXX网络”的作品,均转载自其它媒体,著作权归作者所有,商业转载请联系作者获得授权,非商业转载请注明出处。

我们尊重并感谢每一位作者,均已注明文章来源和作者。如因作品内容、版权或其它问题,请及时与我们联系,联系邮箱:809451989@qq.com,投稿邮箱:809451989@qq.com

热搜词