You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@pdfbox.apache.org by "Andreas Lehmkühler (JIRA)" <ji...@apache.org> on 2017/05/05 16:08:04 UTC

[jira] [Resolved] (PDFBOX-3519) COSName is not ascii

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

Andreas Lehmkühler resolved PDFBOX-3519.
----------------------------------------
    Resolution: Fixed

I've merged Maruans changes to the 2.0 branch as well. Set to resolved

> COSName is not ascii
> --------------------
>
>                 Key: PDFBOX-3519
>                 URL: https://issues.apache.org/jira/browse/PDFBOX-3519
>             Project: PDFBox
>          Issue Type: Bug
>          Components: Parsing
>    Affects Versions: 2.0.3
>            Reporter: simon steiner
>            Assignee: Andreas Lehmkühler
>            Priority: Minor
>             Fix For: 2.0.6, 3.0.0
>
>         Attachments: COSNameAcrobat.png
>
>
> Trunk seems ok
> PDF is from PDFBOX-783
> {code}
> public static void main( String[] args ) throws IOException {
>     PDDocument doc = PDDocument.load(new File("A02Gj780LZ.pdf"));
>     COSDictionary x = doc.getPage(0).getResources().getCOSObject();
>         read(x);
>     doc.close();
> }
> private static void read(COSBase b) {
>     if (b instanceof COSObject) {
>         read(((COSObject) b).getObject());
>     } else if (b instanceof COSDictionary) {
>         for (COSBase x : ((COSDictionary) b).getValues()) {
>             read(x);
>         }
>     } else if (b instanceof COSName) {
>         if(((COSName) b).getName().charAt(0) > 256)
>             throw new RuntimeException(((COSName) b).getName());
>     }
> }
> {code}



--
This message was sent by Atlassian JIRA
(v6.3.15#6346)

---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscribe@pdfbox.apache.org
For additional commands, e-mail: dev-help@pdfbox.apache.org