[ 
https://issues.apache.org/jira/browse/PDFBOX-1202?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Ilija Pavlic updated PDFBOX-1202:
---------------------------------

    Description: 
Error "org.apache.pdfbox.filter.FlateFilter decode SEVERE: Stop reading corrupt 
stream" thrown when extracting text.

The document was loaded with the following snippet:

document = PDDocument.load("C:/Users/ilija.pavlic/Downloads/TestInput.pdf");
    if (document.isEncrypted()) {
        try {
            document.decrypt("");
        } catch (InvalidPasswordException e) {
            System.err.println("Error: Document is encrypted with a password.");
            System.exit(1);
        }
}

  was:
Error "org.apache.pdfbox.filter.FlateFilter decode SEVERE: Stop reading corrupt 
stream" thrown when extracting text.

The document was loaded with the following snipper:

document = PDDocument.load("C:/Users/ilija.pavlic/Downloads/TestInput.pdf");
    if (document.isEncrypted()) {
        try {
            document.decrypt("");
        } catch (InvalidPasswordException e) {
            System.err.println("Error: Document is encrypted with a password.");
            System.exit(1);
        }
}

    
> org.apache.pdfbox.filter.FlateFilter decode SEVERE: Stop reading corrupt 
> stream
> -------------------------------------------------------------------------------
>
>                 Key: PDFBOX-1202
>                 URL: https://issues.apache.org/jira/browse/PDFBOX-1202
>             Project: PDFBox
>          Issue Type: Bug
>          Components: Text extraction
>    Affects Versions: 1.6.0
>            Reporter: Ilija Pavlic
>            Priority: Critical
>         Attachments: IATAUnitedStates.pdf
>
>
> Error "org.apache.pdfbox.filter.FlateFilter decode SEVERE: Stop reading 
> corrupt stream" thrown when extracting text.
> The document was loaded with the following snippet:
> document = PDDocument.load("C:/Users/ilija.pavlic/Downloads/TestInput.pdf");
>     if (document.isEncrypted()) {
>         try {
>           document.decrypt("");
>       } catch (InvalidPasswordException e) {
>           System.err.println("Error: Document is encrypted with a password.");
>           System.exit(1);
>       }
> }

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators: 
https://issues.apache.org/jira/secure/ContactAdministrators!default.jspa
For more information on JIRA, see: http://www.atlassian.com/software/jira

        

Reply via email to