Skip to content

Commit

Permalink
Add getcontainsBM to PBoxPDExtGState
Browse files Browse the repository at this point in the history
  • Loading branch information
MaximPlusov committed Jul 9, 2024
1 parent f6f623a commit 9ef78b9
Showing 1 changed file with 5 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -109,6 +109,11 @@ public Boolean getcontainsSMask() {
return ((COSDictionary)simplePDObject.getCOSObject()).containsKey(COSName.SMASK);
}

@Override
public Boolean getcontainsBM() {
return ((COSDictionary)simplePDObject.getCOSObject()).containsKey(COSName.BM);
}

@Override
public String getBMNameValue() {
return getNameKeyStringValue((COSDictionary)simplePDObject.getCOSObject(), COSName.BM);
Expand Down

0 comments on commit 9ef78b9

Please sign in to comment.