在处理 word 文档时,我们经常需要提取其中的文字和图片来创建新的文档或是用于其他用途。如果我们手动复制文字或逐一保存图片,将会非常耗时且容易出现错误或遗漏的情况。本文将介绍如何使用 spire.doc for c 通过程序快速 word 文档中提取文字和图片。
安装 spire.doc for c
有两种方法可以将 spire.doc for c 集成到您的应用程序中。一种方法是通过 安装它,另一种方法是从我们的网站下载包并将库复制到您的程序中。通过 nuget 安装更简单,更推荐使用。您可以通过访问以下链接找到更多详细信息。
从 word 文档中提取文本
spire.doc for c 中的 document->gettext() 方法可以获取一个 word 文档中的所有文本内容。以下是提取 word 文档中的文本并保存为 txt 文件的详细操作步骤:
- 创建 document 的对象。
- 使用 document->loadfromfile() 方法载入 word 文档。
- 使用 document->gettext() 方法获取文档的所有文本内容。
- 创建一个 txt 文件并将提取的文本内容写入其中。
- c
#include "spire.doc.o.h"
#include
#include
#include
using namespace spire::doc;
using namespace std;
int main()
{
//创建document的对象
document* document = new document();
//载入word文档
document->loadfromfile(l"c:/宇宙视角.docx");
//获取文档中的文本内容
wstring text = document->gettext();
//创建一个txt文件并将提取的文本内容写入其中
wofstream write(l"output/提取文本.txt");
auto locutf8 = locale(locale(""), new std::codecvt_utf8);
write.imbue(locutf8);
write << text;
write.close();
document->close();
delete document;
}
从 word 文档中提取图片
提取 word 文档中的图片需要判断文档的每个子对象是否为图片,再用 docpicture->getimage() 提取图片。以下是详细操作步骤:
- 创建 document 的对象。
- 使用 document->loadfromfile() 方法载入 word 文档。
- 将文档附加到 deque 队列的末尾,然后创建一个矢量图像列表。
- 循环遍历文档的所有子对象,判断每个子对象是否为图片。如果是,则使用 docpicture->getimage() 方法获取该图片并添加到列表中。
- 将提取的图片储存到指定路径。
- c
#include "spire.doc.o.h"
#include
using namespace spire::doc;
int main() {
//创建document的对象
document* document = new document();
//载入word文档
document->loadfromfile(l"c:/宇宙视角.docx");
//将文档添加到deque队列末尾
std::deque nodes;
nodes.push_back(document);
//创建矢量图形列表
std::vector images;
//循环遍历文档的所有子对象
while (nodes.size() > 0)
{
icompositeobject* node = nodes.front();
nodes.pop_front();
for (int i = 0; i < node->getchildobjects()->getcount(); i )
{
idocumentobject* child = node->getchildobjects()->getitem(i);
//获取所有图片并添加到列表
if (child->getdocumentobjecttype() == documentobjecttype::picture)
{
docpicture* picture = dynamic_cast(child);
images.push_back(picture->getimage());
}
else if (dynamic_cast(child) != nullptr)
{
nodes.push_back(dynamic_cast(child));
}
}
}
//储存图片到指定路径
for (int i = 0; i < images.size(); i )
{
std::wstring filename = l"图像-" std::to_wstring(i) l".png";
images[i]->save((l"output/图片/" filename).c_str(), imageformat::getpng());
}
document->close();
delete document;
}
申请临时 license
如果您希望删除结果文档中的评估消息,或者摆脱功能限制,请该email地址已收到反垃圾邮件插件保护。要显示它您需要在浏览器中启用javascript。获取有效期 30 天的临时许可证。