C#Pdf到文本的值在多行中 [英] C# Pdf to Text with values in multiple line

查看:55
本文介绍了C#Pdf到文本的值在多行中的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我有一个pdf文件,其内容如下:-

Hi I have a pdf with content as following : -

Property Address: 123 Door         Form Type: Miscellaneous
                  ABC City
                  Pin - XXX

因此,当我使用itextSharp获取内容时,它的获取方式如下-

So when I use itextSharp to get the content, it is obtained as follows -

Property Address: 123 Door Form Type: Miscellaneous ABC City Pin - XXX

因为数据在下一行中,所以数据是混合的.请根据需要建议一种获取内容的可能方法.谢谢

The data is mixed since it is in next line. Please suggest a possible way to get the content as required. Thanks

Property Address: 123 Door ABC City Pin - XXX Form Type: Miscellaneous

推荐答案

以下使用iTextSharp的代码有助于格式化pdf-

The following code using iTextSharp helped in formatting the pdf -

PdfReader reader = new PdfReader(path);
int pagenumber = reader.NumberOfPages;
for (int page = 1; page <= pagenumber; page++)
{
    ITextExtractionStrategy strategy = new SimpleTextExtractionStrategy();
    string tt = PdfTextExtractor.GetTextFromPage(reader, page , strategy);
    tt = Encoding.UTF8.GetString(ASCIIEncoding.Convert(Encoding.Default, Encoding.UTF8, Encoding.Default.GetBytes(tt)));
    File.AppendAllLines(outfile, tt, Encoding.UTF8);
}

这篇关于C#Pdf到文本的值在多行中的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆