一文彻底搞懂前端实现文件预览(word、excel、pdf、ppt、mp4、图片、文本)

开发 前端
主要介绍了w本文ord、excel、pdf文件实现预览的方式,前端实现预览最好的效果还是PDF,不会出现一些文字错乱和乱码的问题。

前言

因为业务需要,很多文件需要在前端实现预览,今天就来了解一下吧。

Demo地址:https://zhuye1993.github.io/file-view/dist/index.html

实现方案

找了网上的实现方案,效果看起来不错,放在下面的表格里,里面有一些是可以直接通过npm在vue中引入使用。

文档格式

老的开源组件

替代开源组件

word(docx)

mammoth

docx-preview(npm)

powerpoint(pptx)

pptxjs

pptxjs改造开发

excel(xlsx)

sheetjs、handsontable

exceljs(npm)、handsontable(npm)(npm)

pdf(pdf)

pdfjs

pdfjs(npm)

图片

jquery.verySimpleImageViewer

v-viewer(npm)

docx文件实现前端预览

代码实现

  • 首先npm i docx-preview
  • 引入renderAsync方法
  • 将blob数据流传入方法中,渲染word文档
import { defaultOptions, renderAsync } from "docx-preview";
renderAsync(buffer, document.getElementById("container"), null,
options: {
className: string = "docx", // 默认和文档样式类的类名/前缀
inWrapper: boolean = true, // 启用围绕文档内容渲染包装器
ignoreWidth: boolean = false, // 禁止页面渲染宽度
ignoreHeight: boolean = false, // 禁止页面渲染高度
ignoreFonts: boolean = false, // 禁止字体渲染
breakPages: boolean = true, // 在分页符上启用分页
ignoreLastRenderedPageBreak: boolean = true,//禁用lastRenderedPageBreak元素的分页
experimental: boolean = false, //启用实验性功能(制表符停止计算)
trimXmlDeclaration: boolean = true, //如果为真,xml声明将在解析之前从xml文档中删除
debug: boolean = false, // 启用额外的日志记录
}
);

实现效果:

pdf实现前端预览

代码实现

  • 首先npm i pdfjs-dist
  • 设置PDFJS.GlobalWorkerOptions.workerSrc的地址
  • 通过PDFJS.getDocument处理pdf数据,返回一个对象pdfDoc
  • 通过pdfDoc.getPage单独获取第1页的数据
  • 创建一个dom元素,设置元素的画布属性
  • 通过page.render方法,将数据渲染到画布上
import * as PDFJS from "pdfjs-dist/legacy/build/pdf";
// 设置pdf.worker.js文件的引入地址
PDFJS.GlobalWorkerOptions.workerSrc = require("pdfjs-dist/legacy/build/pdf.worker.entry.js");
// data是一个ArrayBuffer格式,也是一个buffer流的数据
PDFJS.getDocument(data).promise.then(pdfDoc=>{
const numPages = pdfDoc.numPages; // pdf的总页数
// 获取第1页的数据
pdfDoc.getPage(1).then(page =>{
// 设置canvas相关的属性
const canvas = document.getElementById("the_canvas");
const ctx = canvas.getContext("2d");
const dpr = window.devicePixelRatio || 1;
const bsr =
ctx.webkitBackingStorePixelRatio ||
ctx.mozBackingStorePixelRatio ||
ctx.msBackingStorePixelRatio ||
ctx.oBackingStorePixelRatio ||
ctx.backingStorePixelRatio ||
1;
const ratio = dpr / bsr;
const viewport = page.getViewport({ scale: 1 });
canvas.width = viewport.width * ratio;
canvas.height = viewport.height * ratio;
canvas.style.width = viewport.width + "px";
canvas.style.height = viewport.height + "px";
ctx.setTransform(ratio, 0, 0, ratio, 0, 0);
const renderContext = {
canvasContext: ctx,
viewport: viewport,
};
// 数据渲染到canvas画布上
page.render(renderContext);
})
})

实现效果:

excel实现前端预览

代码实现

  • 下载exceljs、handsontable的库
  • 通过exceljs读取到文件的数据
  • 通过workbook.getWorksheet方法获取到每一个工作表的数据,将数据处理成一个二维数组的数据
  • 引入@handsontable/vue的组件HotTable
  • 通过settings属性,将一些配置参数和二维数组数据传入组件,渲染成excel样式,实现预览
// 加载excel的数据
(new ExcelJS.Workbook().xlsx.load(buffer)).then(workbook=>{
// 获取excel的第一页的数据
const ws = workbook.getWorksheet(1);
// 获取每一行的数据
const data = ws.getRows(1, ws.actualRowCount);
})
// 渲染页面
import { HotTable } from "@handsontable/vue";
<hot-table :settings="hotSettings"></hot-table>
hotSettings = {
language: "zh-CN",
readOnly: true,
data: this.data,
cell: this.cell,
mergeCells: this.merge,
colHeaders: true,
rowHeaders: true,
height: "calc(100vh - 107px)",
// contextMenu: true,
// manualRowMove: true,
// 关闭外部点击取消选中时间的行为
outsideClickDeselects: false,
// fillHandle: {
// direction: 'vertical',
// autoInsertRow: true
// },
// afterSelectionEnd: this.afterSelectionEnd,
// bindRowsWithHeaders: 'strict',
licenseKey: "non-commercial-and-evaluation"
}

实现效果

pptx的前端预览

主要是通过jszip库,加载二进制文件,再经过一些列处理处理转换实现预览效果,实现起来比较麻烦,就不贴代码了,感兴趣的可以下载代码查看。

实现效果

总结

主要介绍了word、excel、pdf文件实现预览的方式,前端实现预览最好的效果还是PDF,不会出现一些文字错乱和乱码的问题,所以一般好的方案就是后端配合将不同格式的文件转换成pdf,再由前端实现预览效果,将会保留文件的一些样式的效果,对于图片、txt文件的实现,感兴趣的可以看下代码。

代码地址

​https://github.com/zhuye1993/file-view​

责任编辑:庞桂玉 来源: 前端大全
相关推荐

2022-06-07 10:13:22

前端沙箱对象

2020-12-07 06:19:50

监控前端用户

2021-06-30 08:45:02

内存管理面试

2020-03-18 14:00:47

MySQL分区数据库

2021-07-08 10:08:03

DvaJS前端Dva

2019-11-06 17:30:57

cookiesessionWeb

2024-08-08 14:57:32

2022-04-11 10:56:43

线程安全

2023-11-08 18:35:29

得物前端监控

2023-04-12 08:38:44

函数参数Context

2021-08-05 06:54:05

观察者订阅设计

2020-12-18 09:36:01

JSONP跨域面试官

2023-11-23 06:50:08

括号

2021-03-29 11:18:06

前端开发技术

2024-04-12 12:19:08

语言模型AI

2021-01-06 13:52:19

zookeeper开源分布式

2022-03-24 08:51:48

Redis互联网NoSQL

2021-10-20 08:49:30

Vuexvue.js状态管理模式

2011-09-06 16:42:30

FFmpegUbuntu

2019-12-04 13:50:07

CookieSessionToken
点赞
收藏

51CTO技术栈公众号