You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@pdfbox.apache.org by "karthick (JIRA)" <ji...@apache.org> on 2010/09/02 06:06:56 UTC

[jira] Created: (PDFBOX-810) Problem in extracting roman page numbers [PDPageLabels.java]

 Problem in extracting roman page numbers [PDPageLabels.java]
-------------------------------------------------------------

                 Key: PDFBOX-810
                 URL: https://issues.apache.org/jira/browse/PDFBOX-810
             Project: PDFBox
          Issue Type: Bug
          Components: PDModel
    Affects Versions: 1.2.1
            Reporter: karthick
            Priority: Minor
             Fix For: 1.2.1


Hi all ,

* I am very long time user of PDFBOX from 0.7.3 version.

* Current I am using the latest version(1.2.1).

* While using i came across the problem while extracting PDFPageLabels for PDF with roman numbers .

* For example if the label is "xi" PDFBOX output is "xxi" and it is correct for pagenumber less than ten.

* I made a small correction in the code PDPageLabels.java and found that it seems to work fine .

ORIGINAL CODE IN PDPageLabels.java


 private static final String[][] ROMANS = new String[][]
        {
        { "", "i", "ii", "iii", "iv", "v", "vi", "vii", "viii", "ix" },
        { "x", "xx", "xxx", "xl", "l", "lx", "lxx", "lxxx", "xc" },
        { "c", "cc", "ccc", "cd", "d", "dc", "dcc", "dccc", "cm" }, };

 
MODIFIED CODE IN PDPageLabels.java


private static final String[][] ROMANS = new String[][]
        {
        { "", "i", "ii", "iii", "iv", "v", "vi", "vii", "viii", "ix" },
        { "", "x", "xx", "xxx", "xl", "l", "lx", "lxx", "lxxx", "xc" },
        { "", "c", "cc", "ccc", "cd", "d", "dc", "dcc", "dccc", "cm" }, };

*Please advice me whether the above change is correct and incorporate in my PDFBox.

Thank You very much

Regards

Karthick . G



-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.


[jira] Updated: (PDFBOX-810) Problem in extracting roman page numbers [PDPageLabels.java]

Posted by "Andreas Lehmkühler (JIRA)" <ji...@apache.org>.
     [ https://issues.apache.org/jira/browse/PDFBOX-810?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Andreas Lehmkühler updated PDFBOX-810:
--------------------------------------

        Fix Version/s: 1.3.0
                           (was: 1.2.1)
    Affects Version/s:     (was: 1.2.1)

>  Problem in extracting roman page numbers [PDPageLabels.java]
> -------------------------------------------------------------
>
>                 Key: PDFBOX-810
>                 URL: https://issues.apache.org/jira/browse/PDFBOX-810
>             Project: PDFBox
>          Issue Type: Bug
>          Components: PDModel
>            Reporter: karthick
>            Priority: Minor
>             Fix For: 1.3.0
>
>
> Hi all ,
> * I am very long time user of PDFBOX from 0.7.3 version.
> * Current I am using the latest version(1.2.1).
> * While using i came across the problem while extracting PDFPageLabels for PDF with roman numbers .
> * For example if the label is "xi" PDFBOX output is "xxi" and it is correct for pagenumber less than ten.
> * I made a small correction in the code PDPageLabels.java and found that it seems to work fine .
> ORIGINAL CODE IN PDPageLabels.java
>  private static final String[][] ROMANS = new String[][]
>         {
>         { "", "i", "ii", "iii", "iv", "v", "vi", "vii", "viii", "ix" },
>         { "x", "xx", "xxx", "xl", "l", "lx", "lxx", "lxxx", "xc" },
>         { "c", "cc", "ccc", "cd", "d", "dc", "dcc", "dccc", "cm" }, };
>  
> MODIFIED CODE IN PDPageLabels.java
> private static final String[][] ROMANS = new String[][]
>         {
>         { "", "i", "ii", "iii", "iv", "v", "vi", "vii", "viii", "ix" },
>         { "", "x", "xx", "xxx", "xl", "l", "lx", "lxx", "lxxx", "xc" },
>         { "", "c", "cc", "ccc", "cd", "d", "dc", "dcc", "dccc", "cm" }, };
> *Please advice me whether the above change is correct and incorporate in my PDFBox.
> Thank You very much
> Regards
> Karthick . G

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.


[jira] Resolved: (PDFBOX-810) Problem in extracting roman page numbers [PDPageLabels.java]

Posted by "Jukka Zitting (JIRA)" <ji...@apache.org>.
     [ https://issues.apache.org/jira/browse/PDFBOX-810?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Jukka Zitting resolved PDFBOX-810.
----------------------------------

      Assignee: Jukka Zitting
    Resolution: Fixed

Thanks! Fixed as suggested in revision 992275.

>  Problem in extracting roman page numbers [PDPageLabels.java]
> -------------------------------------------------------------
>
>                 Key: PDFBOX-810
>                 URL: https://issues.apache.org/jira/browse/PDFBOX-810
>             Project: PDFBox
>          Issue Type: Bug
>          Components: PDModel
>            Reporter: karthick
>            Assignee: Jukka Zitting
>            Priority: Minor
>             Fix For: 1.3.0
>
>
> Hi all ,
> * I am very long time user of PDFBOX from 0.7.3 version.
> * Current I am using the latest version(1.2.1).
> * While using i came across the problem while extracting PDFPageLabels for PDF with roman numbers .
> * For example if the label is "xi" PDFBOX output is "xxi" and it is correct for pagenumber less than ten.
> * I made a small correction in the code PDPageLabels.java and found that it seems to work fine .
> ORIGINAL CODE IN PDPageLabels.java
>  private static final String[][] ROMANS = new String[][]
>         {
>         { "", "i", "ii", "iii", "iv", "v", "vi", "vii", "viii", "ix" },
>         { "x", "xx", "xxx", "xl", "l", "lx", "lxx", "lxxx", "xc" },
>         { "c", "cc", "ccc", "cd", "d", "dc", "dcc", "dccc", "cm" }, };
>  
> MODIFIED CODE IN PDPageLabels.java
> private static final String[][] ROMANS = new String[][]
>         {
>         { "", "i", "ii", "iii", "iv", "v", "vi", "vii", "viii", "ix" },
>         { "", "x", "xx", "xxx", "xl", "l", "lx", "lxx", "lxxx", "xc" },
>         { "", "c", "cc", "ccc", "cd", "d", "dc", "dcc", "dccc", "cm" }, };
> *Please advice me whether the above change is correct and incorporate in my PDFBox.
> Thank You very much
> Regards
> Karthick . G

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.