Bug 102640 - [PATCH] Form and annotation borders are not drawn when field /S is not present in /BS
Summary: [PATCH] Form and annotation borders are not drawn when field /S is not presen...
Status: RESOLVED MOVED
Alias: None
Product: poppler
Classification: Unclassified
Component: general (show other bugs)
Version: unspecified
Hardware: Other All
: medium normal
Assignee: poppler-bugs
QA Contact:
URL:
Whiteboard:
Keywords:
Depends on:
Blocks:
 
Reported: 2017-09-10 04:12 UTC by Andrew Chen
Modified: 2018-08-21 11:10 UTC (History)
1 user (show)

See Also:
i915 platform:
i915 features:


Attachments
patch (2.26 KB, patch)
2017-09-10 04:15 UTC, Andrew Chen
Details | Splinter Review
test.pdf (12.94 KB, image/png)
2017-09-10 04:17 UTC, Andrew Chen
Details
test.pdf (12.94 KB, application/pdf)
2017-09-10 04:18 UTC, Andrew Chen
Details
test.cpp (425 bytes, text/x-c++src)
2017-09-10 04:26 UTC, Andrew Chen
Details
acrobat-screenshot.png (58.09 KB, image/png)
2017-09-17 00:14 UTC, Andrew Chen
Details
initial implementation (12.53 KB, patch)
2017-09-24 07:50 UTC, Andrew Chen
Details | Splinter Review

Description Andrew Chen 2017-09-10 04:12:40 UTC
Border width should not be forced to 0 when /W and/or /S are not present in /BS

Commit 289679405 introduced the behavior: "Avoid drawing borders unless /W and /S are specified in /BS" as a work around for acroread 8. This is not compliant with the pdf specs, and the latest versions of Adobe Acrobat (2017) don't requires both fields to be present, and does not emit the /S field when not necessary.

User visible impact: form and annotation borders are not generated properly when saving pdfs after editing.
Comment 1 Andrew Chen 2017-09-10 04:15:11 UTC
Created attachment 134120 [details] [review]
patch
Comment 2 Andrew Chen 2017-09-10 04:17:22 UTC
Created attachment 134121 [details]
test.pdf
Comment 3 Andrew Chen 2017-09-10 04:18:00 UTC
Created attachment 134122 [details]
test.pdf
Comment 4 Andrew Chen 2017-09-10 04:26:03 UTC
Created attachment 134123 [details]
test.cpp

Test case:
1. compile and run test.cpp with test.pdf in the same folder
2. output is the border width of the input box in the pdf as read by the library
The border width should be 3.

Alternative test method:
1. open test.pdf in evince or okular
2. type some text in the input box and save it
3. open it again and observe if the border is still there
If the border is gone, the library did not parse the border width correctly.

PS: test.pdf is generated by adobe acrobat and then decompressed with qpdf.
Comment 5 Andrew Chen 2017-09-10 04:33:03 UTC
jrmuizel, since you wrote the original commit, what do you think?
Comment 6 Albert Astals Cid 2017-09-16 22:35:41 UTC
This causes a regression on the rendering of the last page of file https://bugs.freedesktop.org/attachment.cgi?id=21065
Comment 7 Andrew Chen 2017-09-17 00:14:47 UTC
Created attachment 134284 [details]
acrobat-screenshot.png

Interestingly enough, adobe acrobat just ignores /Border when /BS is present, so it draws a 1px border. The pdf specs allows /Border to be ignored in favor of /BS.

I don't consider this to be a regression, rather the original implementation is bugged. In fact the original implementation also ignored /Border, it just assumed there is no border because /W is missing in /BS, instead of using the default value of a 1px border.

Snippet from pdf file:
>  /A <<
>    /S /URI
>    /URI (http://www.ti.com/wireless)
>  >>
>  /BS <<
>    /Type /Border
>  >>
>  /Border [
>    0
>    0
>    0
>  ]
Comment 8 Albert Astals Cid 2017-09-17 12:07:34 UTC
(In reply to Andrew Chen from comment #7)
> I don't consider this to be a regression, 

But you're not the maintainer and I am. There's a file that worked and with your patch does not. That's a regression, until that gets fixed the patch described here can't get merged in the codebase.
Comment 9 Andrew Chen 2017-09-18 06:43:37 UTC
I apologize if my previous comment has offended you.

The reason I don't want to call it a regression is because I don't see any definitive standard we can adhere to in this case. So it is worth discussing this instead of blindly following what the original behavior is.

I can see two possible courses of action:
1. Follow acrobat: ignore /Border when /BS is present. This leads to a (default) 1px border rendered in your pdf.
2. Preferentially use values from /BS but also use values from /Border if the corresponding values are not present in /BS. This would cause no border to be rendered in your pdf.

The second one seems like the more logical thing to do but the first option makes for better compatibility.

I personally think maintaining compatibility with acrobat is the better option, but I can also see why it would be a good idea to just try make the most sense of of the pdf.
Comment 10 Albert Astals Cid 2017-09-18 07:12:39 UTC
Rendering compatibility with Adobe Reader is crucial
Comment 11 Albert Astals Cid 2017-09-18 07:14:03 UTC
You could argue that the getters should still return the "correct" values from the PDF and be ignored somewhere else for drawing, i wouldn't disagree if you had a patch that implemented that properly for all the rendering backends.
Comment 12 Andrew Chen 2017-09-24 07:50:49 UTC
Created attachment 134452 [details] [review]
initial implementation

I separated the field Annot::border into two fields borderArray and borderBS. That will allow both /Border and /BS to be retrieved by getters. getBorder() returns borderBS if available, and borderArray.

There are still a few problems with this:
1. If both /Border and /BS are present in a pdf file, only /BS will be kept when it is saved again.
2. borderArray and borderBS are not kept in sync, changes to one will not be reflected in the other.
Comment 13 Albert Astals Cid 2017-09-25 23:04:10 UTC
Do you have a plan to solve those issues?
Comment 14 GitLab Migration User 2018-08-21 11:10:07 UTC
-- GitLab Migration Automatic Message --

This bug has been migrated to freedesktop.org's GitLab instance and has been closed from further activity.

You can subscribe and participate further through the new bug through this link to our GitLab instance: https://gitlab.freedesktop.org/poppler/poppler/issues/544.


Use of freedesktop.org services, including Bugzilla, is subject to our Code of Conduct. How we collect and use information is described in our Privacy Policy.