Ler documentos PDF em .Net [fechado]

88

Existe uma biblioteca de código aberto que me ajudará a ler / analisar documentos PDF em .Net / C #?

JRoppert
fonte
1
A resposta fornecida por Brock Nusser parece ser a solução mais atualizada e deve ser considerada a resposta certa para esta pergunta
ceetheman
Mais respostas do iTextSharp atualizadas aqui, uma vez que esta questão está fechada.
VDWWD

Respostas:

116

Desde que esta pergunta foi respondida pela última vez em 2008, o iTextSharp melhorou sua API dramaticamente. Se você baixar a versão mais recente de seu api em http://sourceforge.net/projects/itextsharp/ , você pode usar o seguinte trecho de código para extrair todo o texto de um pdf em uma string.

using iTextSharp.text.pdf;
using iTextSharp.text.pdf.parser;

namespace PdfParser
{
    public static class PdfTextExtractor
    {
        public static string pdfText(string path)
        {
            PdfReader reader = new PdfReader(path);
            string text = string.Empty;
            for(int page = 1; page <= reader.NumberOfPages; page++)
            {
                text += PdfTextExtractor.GetTextFromPage(reader,page);
            }
            reader.Close();
            return text;
        }   
    }
}
Brock Nusser
fonte
17
Você provavelmente não deveria ligar para sua classe, PdfTextExtractorpois ela entrará em conflito com a deiTextSharp.text.pdf.parser
Neil
2
iTextSharp mudou para GitHub: github.com/itext/itextsharp
Amedee Van Gasse
1
talvez quem respondeu aqui possa ajudar aqui ?
Veverke
6
Agora é pago para projetos comerciais.
Nikolay Kostov
1
@iTextSharp tornou-se obsoleto e foi substituído por iText 7 github.com/itext/itext7-dotnet .
Mateus
62

O iTextSharp é a melhor aposta. Usei para fazer uma aranha para lucene.Net para que pudesse rastrear PDF.

using System;
using System.IO;
using iTextSharp.text.pdf;
using System.Text.RegularExpressions;

namespace Spider.Utils
{
    /// <summary>
    /// Parses a PDF file and extracts the text from it.
    /// </summary>
    public class PDFParser
    {
        /// BT = Beginning of a text object operator 
        /// ET = End of a text object operator
        /// Td move to the start of next line
        ///  5 Ts = superscript
        /// -5 Ts = subscript

        #region Fields

        #region _numberOfCharsToKeep
        /// <summary>
        /// The number of characters to keep, when extracting text.
        /// </summary>
        private static int _numberOfCharsToKeep = 15;
        #endregion

        #endregion

        #region ExtractText
        /// <summary>
        /// Extracts a text from a PDF file.
        /// </summary>
        /// <param name="inFileName">the full path to the pdf file.</param>
        /// <param name="outFileName">the output file name.</param>
        /// <returns>the extracted text</returns>
        public bool ExtractText(string inFileName, string outFileName)
        {
            StreamWriter outFile = null;
            try
            {
                // Create a reader for the given PDF file
                PdfReader reader = new PdfReader(inFileName);
                //outFile = File.CreateText(outFileName);
                outFile = new StreamWriter(outFileName, false, System.Text.Encoding.UTF8);

                Console.Write("Processing: ");

                int totalLen = 68;
                float charUnit = ((float)totalLen) / (float)reader.NumberOfPages;
                int totalWritten = 0;
                float curUnit = 0;

                for (int page = 1; page <= reader.NumberOfPages; page++)
                {
                    outFile.Write(ExtractTextFromPDFBytes(reader.GetPageContent(page)) + " ");

                    // Write the progress.
                    if (charUnit >= 1.0f)
                    {
                        for (int i = 0; i < (int)charUnit; i++)
                        {
                            Console.Write("#");
                            totalWritten++;
                        }
                    }
                    else
                    {
                        curUnit += charUnit;
                        if (curUnit >= 1.0f)
                        {
                            for (int i = 0; i < (int)curUnit; i++)
                            {
                                Console.Write("#");
                                totalWritten++;
                            }
                            curUnit = 0;
                        }

                    }
                }

                if (totalWritten < totalLen)
                {
                    for (int i = 0; i < (totalLen - totalWritten); i++)
                    {
                        Console.Write("#");
                    }
                }
                return true;
            }
            catch
            {
                return false;
            }
            finally
            {
                if (outFile != null) outFile.Close();
            }
        }
        #endregion

        #region ExtractTextFromPDFBytes
        /// <summary>
        /// This method processes an uncompressed Adobe (text) object 
        /// and extracts text.
        /// </summary>
        /// <param name="input">uncompressed</param>
        /// <returns></returns>
        public string ExtractTextFromPDFBytes(byte[] input)
        {
            if (input == null || input.Length == 0) return "";

            try
            {
                string resultString = "";

                // Flag showing if we are we currently inside a text object
                bool inTextObject = false;

                // Flag showing if the next character is literal 
                // e.g. '\\' to get a '\' character or '\(' to get '('
                bool nextLiteral = false;

                // () Bracket nesting level. Text appears inside ()
                int bracketDepth = 0;

                // Keep previous chars to get extract numbers etc.:
                char[] previousCharacters = new char[_numberOfCharsToKeep];
                for (int j = 0; j < _numberOfCharsToKeep; j++) previousCharacters[j] = ' ';


                for (int i = 0; i < input.Length; i++)
                {
                    char c = (char)input[i];
                    if (input[i] == 213)
                        c = "'".ToCharArray()[0];

                    if (inTextObject)
                    {
                        // Position the text
                        if (bracketDepth == 0)
                        {
                            if (CheckToken(new string[] { "TD", "Td" }, previousCharacters))
                            {
                                resultString += "\n\r";
                            }
                            else
                            {
                                if (CheckToken(new string[] { "'", "T*", "\"" }, previousCharacters))
                                {
                                    resultString += "\n";
                                }
                                else
                                {
                                    if (CheckToken(new string[] { "Tj" }, previousCharacters))
                                    {
                                        resultString += " ";
                                    }
                                }
                            }
                        }

                        // End of a text object, also go to a new line.
                        if (bracketDepth == 0 &&
                            CheckToken(new string[] { "ET" }, previousCharacters))
                        {

                            inTextObject = false;
                            resultString += " ";
                        }
                        else
                        {
                            // Start outputting text
                            if ((c == '(') && (bracketDepth == 0) && (!nextLiteral))
                            {
                                bracketDepth = 1;
                            }
                            else
                            {
                                // Stop outputting text
                                if ((c == ')') && (bracketDepth == 1) && (!nextLiteral))
                                {
                                    bracketDepth = 0;
                                }
                                else
                                {
                                    // Just a normal text character:
                                    if (bracketDepth == 1)
                                    {
                                        // Only print out next character no matter what. 
                                        // Do not interpret.
                                        if (c == '\\' && !nextLiteral)
                                        {
                                            resultString += c.ToString();
                                            nextLiteral = true;
                                        }
                                        else
                                        {
                                            if (((c >= ' ') && (c <= '~')) ||
                                                ((c >= 128) && (c < 255)))
                                            {
                                                resultString += c.ToString();
                                            }

                                            nextLiteral = false;
                                        }
                                    }
                                }
                            }
                        }
                    }

                    // Store the recent characters for 
                    // when we have to go back for a checking
                    for (int j = 0; j < _numberOfCharsToKeep - 1; j++)
                    {
                        previousCharacters[j] = previousCharacters[j + 1];
                    }
                    previousCharacters[_numberOfCharsToKeep - 1] = c;

                    // Start of a text object
                    if (!inTextObject && CheckToken(new string[] { "BT" }, previousCharacters))
                    {
                        inTextObject = true;
                    }
                }

                return CleanupContent(resultString);
            }
            catch
            {
                return "";
            }
        }

        private string CleanupContent(string text)
        {
            string[] patterns = { @"\\\(", @"\\\)", @"\\226", @"\\222", @"\\223", @"\\224", @"\\340", @"\\342", @"\\344", @"\\300", @"\\302", @"\\304", @"\\351", @"\\350", @"\\352", @"\\353", @"\\311", @"\\310", @"\\312", @"\\313", @"\\362", @"\\364", @"\\366", @"\\322", @"\\324", @"\\326", @"\\354", @"\\356", @"\\357", @"\\314", @"\\316", @"\\317", @"\\347", @"\\307", @"\\371", @"\\373", @"\\374", @"\\331", @"\\333", @"\\334", @"\\256", @"\\231", @"\\253", @"\\273", @"\\251", @"\\221"};
            string[] replace = {   "(",     ")",      "-",     "'",      "\"",      "\"",    "à",      "â",      "ä",      "À",      "Â",      "Ä",      "é",      "è",      "ê",      "ë",      "É",      "È",      "Ê",      "Ë",      "ò",      "ô",      "ö",      "Ò",      "Ô",      "Ö",      "ì",      "î",      "ï",      "Ì",      "Î",      "Ï",      "ç",      "Ç",      "ù",      "û",      "ü",      "Ù",      "Û",      "Ü",      "®",      "™",      "«",      "»",      "©",      "'" };

            for (int i = 0; i < patterns.Length; i++)
            {
                string regExPattern = patterns[i];
                Regex regex = new Regex(regExPattern, RegexOptions.IgnoreCase);
                text = regex.Replace(text, replace[i]);
            }

            return text;
        }

        #endregion

        #region CheckToken
        /// <summary>
        /// Check if a certain 2 character token just came along (e.g. BT)
        /// </summary>
        /// <param name="tokens">the searched token</param>
        /// <param name="recent">the recent character array</param>
        /// <returns></returns>
        private bool CheckToken(string[] tokens, char[] recent)
        {
            foreach (string token in tokens)
            {
                if ((recent[_numberOfCharsToKeep - 3] == token[0]) &&
                    (recent[_numberOfCharsToKeep - 2] == token[1]) &&
                    ((recent[_numberOfCharsToKeep - 1] == ' ') ||
                    (recent[_numberOfCharsToKeep - 1] == 0x0d) ||
                    (recent[_numberOfCharsToKeep - 1] == 0x0a)) &&
                    ((recent[_numberOfCharsToKeep - 4] == ' ') ||
                    (recent[_numberOfCharsToKeep - 4] == 0x0d) ||
                    (recent[_numberOfCharsToKeep - 4] == 0x0a))
                    )
                {
                    return true;
                }
            }
            return false;
        }
        #endregion
    }
}
ceetheman
fonte
1
Olá ceetheman, tentei usar o código que você forneceu acima ... mas obtive um problema. Meus alguns arquivos PDF são lidos corretamente, mas em alguns arquivos PDF, obtive o erro "Índice fora do intervalo" na função "CheckToken". você pode me ajudar a resolver isso?
Radhi
18
Referenciar a fonte de seu exemplo é uma ideia boa e educada. Neste caso, o mesmo código-fonte pode ser encontrado aqui codeproject.com/KB/cs/PDFToText.aspx
Myster
2
Tenho problemas com este código, ele retorna gobledegook composto pelas letras r e n. Usei o PDFBox no final.
Myster
Tão estranho ... Eu conectei meu pdf e tenho 1627 linhas vazias no meu arquivo de texto ...
Ortund
1
A resposta fornecida por Brock Nusser parece ser a solução mais atualizada e deve ser considerada a resposta certa para esta questão.
ceetheman
6
public string ReadPdfFile(object Filename, DataTable ReadLibray)
{
    PdfReader reader2 = new PdfReader((string)Filename);
    string strText = string.Empty;

    for (int page = 1; page <= reader2.NumberOfPages; page++)
    {
    ITextExtractionStrategy its = new iTextSharp.text.pdf.parser.SimpleTextExtractionStrategy();
    PdfReader reader = new PdfReader((string)Filename);
    String s = PdfTextExtractor.GetTextFromPage(reader, page, its);

    s = Encoding.UTF8.GetString(ASCIIEncoding.Convert(Encoding.Default, Encoding.UTF8, Encoding.Default.GetBytes(s)));
    strText = strText + s;
    reader.Close();
    }
    return strText;
}
ShravankumarKumar
fonte
1
O único método que funcionou para mim! Valeu cara!
briba
Leitor de PDF? Pls adicione algumas informações.
DxTx de
1
@DT veja iTextSharp
dontbyteme
6

PDFClown pode ajudar, mas eu não o recomendaria para um aplicativo grande ou de uso pesado.

Ilya Kochetov
fonte
LGPL licenciado para que possa ser usado para criar software comercial proprietário.
Sylwester Santorowski
3

iText é a melhor biblioteca que conheço. Originalmente escrito em Java, também existe uma porta .NET.

Veja http://www.ujihara.jp/iTextdotNET/en/


fonte
Essa não é uma porta oficial e o link está quebrado de qualquer maneira. A porta .NET oficial do iText, iTextSharp, pode ser encontrada no GitHub: github.com/itext/itextsharp
Amedee Van Gasse
1

Você poderia dar uma olhada nisso: http://www.codeproject.com/KB/showcase/pdfrasterizer.aspx Não é totalmente gratuito, mas parece muito bom.

Alex

Alex Fort
fonte
1
Isso pode ajudar a converter PDF em texto bruto? Parece que essa ferramenta o converte em uma imagem. Então eu preciso de uma biblioteca OCR :-)
JRoppert
1

aspose pdf funciona muito bem. então, novamente, você tem que pagar por isso

Kuvo
fonte
0

Há também LibHaru

http://libharu.org/wiki/Main_Page

Cetra
fonte
Link quebrado. libharu.org
TernaryTopiary
1
Além disso: "No momento, a libHaru não oferece suporte à leitura e edição de arquivos PDF existentes e é improvável que esse suporte apareça." Isso é realmente relevante?
TernaryTopiary
0

Dê uma olhada na biblioteca Docotic.Pdf . Não requer que você abra o código-fonte de seu aplicativo (como o iTextSharp com licença viral AGPL 3, por exemplo).

Docotic.Pdf pode ser usado para ler arquivos PDF e extrair texto com ou sem formatação. Por favor, dê uma olhada no artigo que mostra como extrair texto de PDFs .

Isenção de responsabilidade: eu trabalho para a Bit Miracle, fornecedora da biblioteca.

Bobrovsky
fonte
4
Apenas 30 dias grátis. Não é uma boa opção ...
José Augustinho