amis2/packages/office-viewer
2024-04-03 12:59:55 +08:00
..
__tests__ 修复 ghpages 没有 xlsx 问题 (#9836) 2024-03-21 15:46:03 +08:00
.vscode feat: Office Viewer 支持 Excel (#9826) 2024-03-20 11:08:43 +08:00
design feat: Office Viewer 支持 Excel (#9826) 2024-03-20 11:08:43 +08:00
examples feat: Office Viewer 支持 Excel (#9826) 2024-03-20 11:08:43 +08:00
scss feat: Office Viewer 支持 Excel (#9826) 2024-03-20 11:08:43 +08:00
src fix: 修复 excel 渲染时合并单元格垂直方向不正确问题 Closes #9936 (#9964) 2024-04-03 12:59:55 +08:00
tools feat: Office Viewer 支持 Excel (#9826) 2024-03-20 11:08:43 +08:00
.gitignore feat: Office Viewer 支持 Excel (#9826) 2024-03-20 11:08:43 +08:00
bunfig.toml 修复 ghpages 没有 xlsx 问题 (#9836) 2024-03-21 15:46:03 +08:00
index.html feat: Office Viewer 支持 Excel (#9826) 2024-03-20 11:08:43 +08:00
package.json fix: 修复 excel 渲染时合并单元格垂直方向不正确问题 Closes #9936 (#9964) 2024-04-03 12:59:55 +08:00
README.md feat: Office Viewer 支持 Excel (#9826) 2024-03-20 11:08:43 +08:00
rollup.config.js feat: Office Viewer 支持 Excel (#9826) 2024-03-20 11:08:43 +08:00
rollup.esm.config.js feat: 添加只打包esm的npm script 2023-07-13 14:13:24 +08:00
tsconfig-for-declaration.json chore: 换一下 office-viewer 包名 (#7321) 2023-07-03 14:31:27 +08:00
tsconfig.json feat: Office Viewer 支持 Excel (#9826) 2024-03-20 11:08:43 +08:00

说明

Word 和 Excel 渲染器,目前接口还未完全稳定,新版可能会修改,请参考 examples

Word 渲染

原理

Word 渲染器,原理是将 docx 里的 xml 格式转成 html

相对于 Canvas 渲染,这个实现方案比较简单,最终页面也可以很方便复制,但无法保证和原始 docx 文件展现一致,因为有部分功能难以在 HTML 中实现,比如图文环绕效果。

已知不支持的功能

参考资料

日常开发可以使用 OOXML viewer 插件查看

开发过程啊参考了

Excel 渲染

原理

使用 Canvas 渲染