阅读PDF使用Itextsharp的外语

时间:2013-08-03 18:22:26

标签: c# winforms pdf itextsharp

我需要阅读PDF文件并绑定到文本框。英语pdf阅读正常。但我无法阅读其他语言!我不知道我做错了什么!我已经安装了所需的字体..请帮我解决问题。

以下代码用于在文本框中显示pdf ..

PdfReader reader = new PdfReader(filePath);
TextExtractionStrategy strategy = new SimpleTextExtractionStrategy();
string s = PdfTextExtractor.GetTextFromPage(reader, 1 , strategy);
s = Encoding.UTF8.GetString(Encoding.Convert(Encoding.Default, Encoding.UTF8,Encoding.UTF8.GetBytes(s)));
richTextBox1.Text = s;

的问候, GANESH M

0 个答案:

没有答案