从所见即所得中提取 doc 文件
上周我正在研究 WYSIWYG - cKeditor。我的脑海中浮现出一个问题。有什么方法可以将 doc 或 docx 文件的内容提取或拉出到 blogger 或 wordpress 文本区域中。例如,我们不需要从 doc(x) 文件中选择和复制文本或图像。我们需要做的就是将文件交给所见即所得,并将 doc(x) 文件的内容粘贴到帖子中。
任何建议将不胜感激。 谢谢 法瓦兹
Last week while i was working on WYSIWYG - cKeditor. a question came in my mind. Is there any way to extract or pull out the content of doc or docx file into the blogger or wordpress text area. For instance, we need not to select and copy the text or images from doc(x) file. All we need to do is hand over the file to WYSIWYG and content of doc(x) file is pasted in the post.
Any suggestion would be appreciated.
Thanks
Fawaz
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
编辑:或者,请参阅此插件。
我认为您可以使用 PHPWord 提取 .docx 文件的内容。
(我可能应该提到,.docx 文件只是具有特定结构的 .zip 文件;Open Office XML)
然而,它似乎更致力于写入.docx文件而不是读取。
__construct
中有一个PHPWord_Template
类,它返回一个如下所示的 XML 文档:
其中确实包含文档的文本。
如果您想继承所有格式,使用此方法似乎需要做很多工作。比复制并粘贴到文本字段要多得多的工作。
Edit: Or alternatively, see this plugin.
I think you can use PHPWord to extract the contents of .docx files.
(I should probably mention that .docx files are just .zip files with a specific structure; Open Office XML)
However, it seems to be more dedicated to writing .docx files instead of reading.
There is class
PHPWord_Template
containing this in the__construct
:Which returns an XML document like this:
Which does have the text of the document in it.
It looks like it will be a lot of work using this method if you want to carry over all the formatting. A lot more work than copying and pasting to a textfield.