Bug 699896 - PDF Anchor Links no longer working since version 25
Summary: PDF Anchor Links no longer working since version 25
Status: RESOLVED DUPLICATE of bug 699830
Alias: None
Product: Ghostscript
Classification: Unclassified
Component: PDF Writer (show other bugs)
Version: 9.25
Hardware: PC All
: P4 normal
Assignee: Ken Sharp
URL:
Keywords:
: 700048 (view as bug list)
Depends on:
Blocks:
 
Reported: 2018-10-05 08:26 UTC by Rainer Kuhn
Modified: 2018-10-26 13:30 UTC (History)
3 users (show)

See Also:
Customer:
Word Size: ---


Attachments
uncompressed pdf (14.19 KB, application/pdf)
2018-10-05 08:26 UTC, Rainer Kuhn
Details
broken anchor tag example (13.61 KB, application/pdf)
2018-10-05 08:27 UTC, Rainer Kuhn
Details

Note You need to log in before you can comment on or make changes to this bug.
Description Rainer Kuhn 2018-10-05 08:26:11 UTC
Created attachment 15778 [details]
uncompressed pdf

Compressing a pdf with GS version 25 removes all the anchor links in the document. Versions prior work. The first page in my simplified example has a destination to link to, the second page has an anchor tag to the first page.

Our raw pdf has been generated using ruby and PrawnPdf

I've attached the raw, uncompressed pdf as a test. I could only add one attachment here. The compression level does not seem to be a factor here.

Happens on the Linux and Mac versions for us.

> gs -dBATCH -dNOPAUSE -o link_test_compressed.pdf  -sDEVICE=pdfwrite -dQUIETlink_test.pdf
Comment 1 Rainer Kuhn 2018-10-05 08:27:06 UTC
Created attachment 15779 [details]
broken anchor tag example
Comment 2 Ken Sharp 2018-10-05 08:35:45 UTC

*** This bug has been marked as a duplicate of bug 699830 ***
Comment 3 Rainer Kuhn 2018-10-05 08:55:44 UTC
Thanks Ken for clearing that up. I've added the flag in.

You said 
> This was a bug fix, the behaviour previously was incorrect, now it is as intended. 

Is it the best choice to assume that a pdf will be printed? Seems like the unusual choice these days.
Comment 4 Ken Sharp 2018-10-05 09:20:05 UTC
(In reply to Rainer Kuhn from comment #3)
> Thanks Ken for clearing that up. I've added the flag in.
> 
> You said 
> > This was a bug fix, the behaviour previously was incorrect, now it is as intended. 
> 
> Is it the best choice to assume that a pdf will be printed? Seems like the
> unusual choice these days.

It depends to some extent on how you see 'printed' and 'viewed'. Ghostscript's primary purpose is rendering its input, ie 'printing' it. A 'viewer' implies some level of interaction (eg links you can click) and that is something which Ghostscript doesn't offer at all.

So that's why the PDF interpreter defaults to treating PDF files as being 'printed'.

As I indicated (I think) in the previous report, I'm inclined to do something with the flag so that it can be set to tell the PDF interpreter to process *all* annotations, regardless of the Print or NoView flags, so that they can make it to the pdfwrite device. I'll probably have to think up some way to pass the bitfield though.
Comment 5 Rainer Kuhn 2018-10-05 09:47:47 UTC
Ah, from our side we only use the compression feature out of all that Ghostscript has to offer.
Comment 6 Vincent Lefevre 2018-10-05 10:47:15 UTC
(In reply to Rainer Kuhn from comment #5)
> Ah, from our side we only use the compression feature out of all that
> Ghostscript has to offer.

I also use Ghostscript only for its compression features. I think that the choice to assume printing by default will annoy most users, while I don't see any advantage (when printing a PDF file with annotations, these annotations are ignored automatically, so that keeping them do not hurt).
Comment 7 Ken Sharp 2018-10-05 10:54:55 UTC
(In reply to Vincent Lefevre from comment #6)
 
> I also use Ghostscript only for its compression features. I think that the
> choice to assume printing by default will annoy most users, while I don't
> see any advantage (when printing a PDF file with annotations, these
> annotations are ignored automatically, so that keeping them do not hurt).

*These* (Link) annotations don't mark the page, other types of annotation do. That's why the PDF specification allows for annotations which are only rendered when printed, and only rendered when 'viewed'.

Which is why the previous behaviour was incorrect, and a bug, it *ignored* the Print flag.

While this *bug* may have been useful to you in *your* use case, that doesn't help people for whom the ability to differentiate is important, which is why the switch is present in the PDF interpreter. Having the switch be ignored makes it pointless.

As I said, I will consider doing something further for pdfwrite and annotations.
Comment 8 Vincent Lefevre 2018-10-05 11:28:17 UTC
(In reply to Ken Sharp from comment #7)
> *These* (Link) annotations don't mark the page, other types of annotation
> do. That's why the PDF specification allows for annotations which are only
> rendered when printed, and only rendered when 'viewed'.

So, if I understand correctly, the suggested -dPrinted=false isn't even a workaround to keep link annotations, as it will drop "print" annotations as a consequence.

> As I said, I will consider doing something further for pdfwrite and
> annotations.

OK, and I think that not having a way to keep all annotations is a valid bug (keeping all annotations is really what I wanted in bug 699874).
Comment 9 Ken Sharp 2018-10-05 11:33:28 UTC
(In reply to Vincent Lefevre from comment #8)

> So, if I understand correctly, the suggested -dPrinted=false isn't even a
> workaround to keep link annotations, as it will drop "print" annotations as
> a consequence.

Yes, I thought I was clear about this previously.

 
> > As I said, I will consider doing something further for pdfwrite and
> > annotations.
> 
> OK, and I think that not having a way to keep all annotations is a valid bug
> (keeping all annotations is really what I wanted in bug 699874).

It is not a bug, the code is working as expected. It may reasonably be described as a limitation of the combination of the PDF interpreter and pdfwrite. There are many such limitations, which is why the documentation on the vector devices is at pains to point out that this combination does *not* simply 'edit', 'modify' or 'merge' PDF files.

This bug is closed, please stop appending to it.
Comment 10 Ken Sharp 2018-10-26 13:30:58 UTC
*** Bug 700048 has been marked as a duplicate of this bug. ***