I would like to recommend using XpdfNet for extracting text from PDF files. It offers increased accuracy for various languages and is also much faster.
attached code to use
string XpdfNetTextExtract(string filePath)
{
return new XpdfNet.XpdfHelper().ToText(filePath);
}
I would like to recommend using XpdfNet for extracting text from PDF files. It offers increased accuracy for various languages and is also much faster.
attached code to use