Simon Stratmann created PDFBOX-3190:
---------------------------------------
Summary: Links don't work in firefox
Key: PDFBOX-3190
URL: https://issues.apache.org/jira/browse/PDFBOX-3190
Project: PDFBox
Issue Type: Bug
Components: PDModel
Affects Versions: 1.8.10
Environment: Windows, Firefox 46
Reporter: Simon Stratmann
Priority: Minor
I added links to the PDF I attached using the following code:
{code:java}
PDPageXYZDestination destination = new PDPageXYZDestination();
destination.setPage((PDPage)
doc.getDocumentCatalog().getAllPages().get(0));
//destination.setPageNumber(0); //TODO Set actual page number
destination.setLeft(0);
destination.setTop((int) PAGE_HEIGHT);
PDAnnotationLink link = new PDAnnotationLink();
link.setAction(new PDActionGoTo());
link.setDestination(destination);
link.setInvisible(false);
PDBorderStyleDictionary borderThick = new PDBorderStyleDictionary();
borderThick.setWidth(0f);
link.setBorderStyle(borderThick);
page.getAnnotations().add(link);
PDRectangle rect = new PDRectangle();
rect.setLowerLeftX(MARGIN_LEFT);
rect.setLowerLeftY(textLowerLeftY);
rect.setUpperRightX(PAGE_WIDTH - MARGIN_RIGHT);
rect.setUpperRightY(textLowerLeftY + TEXT_HEIGHT);
link.setRectangle(rect);
{code}
See the attached file.
The links work fine in Sumatra PDF, Adobe Reader DC 2015 and in Chrome. But in
Firefox they don't work.
Is this due to an error in my code, in Firefox or in PDFBox?
--
This message was sent by Atlassian JIRA
(v6.3.4#6332)
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]