Tilman Hausherr created PDFBOX-2697:
---------------------------------------

             Summary: Annotations don't appear on rotated page
                 Key: PDFBOX-2697
                 URL: https://issues.apache.org/jira/browse/PDFBOX-2697
             Project: PDFBox
          Issue Type: Bug
          Components: Rendering
    Affects Versions: 2.0.0
            Reporter: Tilman Hausherr


Some annotations don't appear on a semi-confidential file of Kevin M.

Observation after some debugging: in PDFStreamEngine.processAnnotation(), 
changing 
{code}
Matrix aa = Matrix.concatenate(matrix, a);
{code}
to
{code}
Matrix aa = Matrix.concatenate(a, matrix);
{code}
works with all my test files.

However the spec tells 
{quote}
Matrix shall be concatenated with A to form a matrix AA that maps from the 
appearance's coordinate system to the annotation's rectangle in default user 
space:
AA = Matrix ¥ A
{quote}

so I wonder if there's a different cause.



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)

---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to