Joao Goncalves created FOP-3327:
-----------------------------------
Summary: Add square dot style to leader rule
Key: FOP-3327
URL: https://issues.apache.org/jira/browse/FOP-3327
Project: FOP
Issue Type: Bug
Reporter: Joao Goncalves
Assignee: Joao Goncalves
Currently, rule leader styling options do not allow for the dots to be squares.
The PDF spec shows it's possible to have square dots as well as round dots.
In FOP, if we replaced the following method
{code:java}
public PDFContentGeneratorHelper setRoundCap() {
return add("J", "1");
} {code}
with
{code:java}
public PDFContentGeneratorHelper setRoundCap() {
return add("J", "2");
} {code}
the dots will be squares. This was done for testing purposes only.
We should add support for square dots.
--
This message was sent by Atlassian Jira
(v8.20.10#820010)