canvas-editor-plugin icon indicating copy to clipboard operation
canvas-editor-plugin copied to clipboard

编辑器导出docx文档,格式错乱

Open zhaoxuanHome opened this issue 1 year ago • 4 comments

我想把canvas-editor编辑器编写的内容导出成docx文件。 1、引入插件并使用: import docxPlugin from '@hufe921/canvas-editor-plugin-docx'; //使用插件 导出文档方法 function executeWord() { instance.use(docxPlugin); if (instance && instance.command && instance.command.executeExportDocx) { instance.command.executeExportDocx({ fileName: fileName.value }); } }

2、导出文档问题,导出文件使用微软office打开: 关于普通文本: 1)字体类型、大小 编辑器内:微软雅黑字体,字号大小默认小四; 导出文件使用微软office打开:中文正文,字号21;

关于图片: 1)图片宽高失真,无法像在编辑器一样被保留下来;

关于表格: 1)表格内文字大小和文字在表格中的位置无法居中或者居左; 2)表格无法设置底纹颜色; 3) 表格无法自适应;

zhaoxuanHome avatar Nov 09 '23 02:11 zhaoxuanHome