Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我需要从 pdf 文件中提取文本,我发现这篇文章从 pdf 文件中获取每个文本流并对其进行解压缩。但我还需要以 Unicode 格式提取文本,所以我尝试调整我的代码,以便它可以使用 wchar_t 字符。唯一的问题是 zlib 一次只接受一个字节进行解压缩。而且我的 wchar_t 每 1 个字符没有 1 个字节。
那么,有没有办法让我在这里解决问题?:)