Skip to content

Commit

Permalink
StructParent added for File Annotation, #267
Browse files Browse the repository at this point in the history
  • Loading branch information
Intelligent2013 committed Sep 25, 2024
1 parent a023d26 commit bfaebb9
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/main/java/org/apache/fop/pdf/PDFLink.java
Original file line number Diff line number Diff line change
Expand Up @@ -116,6 +116,8 @@ public String toPDFString() {
+ (ulx) + " " + (uly) + " "
+ (brx) + " " + (bry) + " ]\n" + "/C [ "
+ this.color + " ]\n" + "/Border [ 0 0 0 ]\n"
+ (this.structParent != null
? "/StructParent " + this.structParent.toString() + "\n" : "")
+ fFlag + "\n>>";
}

Expand Down

0 comments on commit bfaebb9

Please sign in to comment.