使用Itext获取pdf文字的坐标
Posted 编程路上的青铜五
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了使用Itext获取pdf文字的坐标相关的知识,希望对你有一定的参考价值。
using iTextSharp.text.pdf; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace TestIText { class Program { static void Main(string[] args) { PdfReader readerTemp = new PdfReader(@"D:\_Number position.pdf"); PdfHelper.LocationTextExtractionStrategyEx pz = new PdfHelper.LocationTextExtractionStrategyEx(); iTextSharp.text.pdf.parser.PdfReaderContentParser p = new iTextSharp.text.pdf.parser.PdfReaderContentParser(readerTemp); p.ProcessContent<PdfHelper.LocationTextExtractionStrategyEx>(1, pz); Console.WriteLine(pz.GetResultantText()); Console.ReadLine(); } } }
以上是关于使用Itext获取pdf文字的坐标的主要内容,如果未能解决你的问题,请参考以下文章
iText7高级教程之html2pdf——2.使用CSS定义样式
iText7高级教程之html2pdf——2.使用CSS定义样式
iText7高级教程之html2pdf——2.使用CSS定义样式
如何使用 iText 获取 Pdf 表单字段的自定义格式脚本?