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.
我尝试使用 Pdfium 从带有边界的 PDF 文档中获取文本内容,但我找不到相应的 API。下面的 API 单独检索文本内容。
FPDFText_GetText
请让我知道是否有任何其他可能的方式来检索文本内容以及使用 Pdfium 的边界。
您可以使用FPDFText_CountRects来获取边界矩形框的数量,然后FPDFText_GetRect为每个计算的矩形。然后,您可以使用FPDFText_GetBoundedText来检索给定边界框中的文本。这些 API 文档都在里面fpdf_text.h
FPDFText_CountRects
FPDFText_GetRect
FPDFText_GetBoundedText
fpdf_text.h