如何使用 PoDoFo 的“podofotxextract”从 PDF 文件中读取中文文本(C++) 样本

发布于 2024-12-06 06:35:37 字数 140 浏览 0 评论 0原文

我正在使用PoDoFo 0.9.1库在Win32 XP中文版操作系统上读取包含中文字符的PDF文件。 我发现PoDoFo的示例项目“podofotxextract”可以优雅地阅读英文PDF,但是,当我打开中文PDF文件时,没有解析出任何内容。有人有建议吗?多谢。

I am using PoDoFo 0.9.1 library to read a PDF file which contains Chinese characters on Win32 XP Chinese version OS.
I found PoDoFo's sample project "podofotxtextract" can read PDF in English gracefully, however, when I opened a Chinese PDF file, nothing parsed out. anyone has suggestion? thanks a lot.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

枕花眠 2024-12-13 06:35:37

我使用 Objective C 在现有 PDF 文件上添加注释。
顺便说一句:试试

PdfString pdfString(reinterpret_cast("您读到的字符..."));

这是下面的一些代码...

PdfPage* pPage = doc->GetPage(pageIndex);
if (! pPage) {
    // couldn't get that page 
    return;
}
PdfAnnotation* anno;

anno = pPage->CreateAnnotation(ePdfAnnotation_Text, rect);

PdfString sTitle(reinterpret_cast<const pdf_utf8*>([@"中国" UTF8String]));
PdfString sContent(reinterpret_cast<const pdf_utf8*>([@"这是一个中文测试"UTF8String]));
// to parse this annotation
// anno->GetContents().GetStringUtf8().c_str()
anno->SetTitle(sTitle);
anno->SetContents(sContent);
anno->SetOpen(bOpen); 

I use Objective C to add an annotation on an existing PDF file.
btw: just try

PdfString pdfString(reinterpret_cast<const pdf_utf8*>("the chars you read ..."));

that's some code below ...

PdfPage* pPage = doc->GetPage(pageIndex);
if (! pPage) {
    // couldn't get that page 
    return;
}
PdfAnnotation* anno;

anno = pPage->CreateAnnotation(ePdfAnnotation_Text, rect);

PdfString sTitle(reinterpret_cast<const pdf_utf8*>([@"中国" UTF8String]));
PdfString sContent(reinterpret_cast<const pdf_utf8*>([@"这是一个中文测试"UTF8String]));
// to parse this annotation
// anno->GetContents().GetStringUtf8().c_str()
anno->SetTitle(sTitle);
anno->SetContents(sContent);
anno->SetOpen(bOpen); 
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文