Skip to content

Commit

Permalink
Add type PDMaskImage
Browse files Browse the repository at this point in the history
  • Loading branch information
MaximPlusov committed Oct 16, 2024
1 parent a9d9b26 commit 8250500
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions src/main/java/PDLayer.mdl
Original file line number Diff line number Diff line change
Expand Up @@ -440,10 +440,14 @@ type PDXImage extends PDXObject {
link jpxStream: JPEG2000?;
% link to the soft mask image (SMask key)
link SMask: PDSMaskImage?;
% link to the mask image (Mask key)
link Mask: PDMaskImage?;
% true if the image dictionary contains Alternates key
property containsAlternates: Boolean;
% value of the BitsPerComponent key
property BitsPerComponent: Integer;
% true, if this Image XObject is mask
property isMask: Boolean;
}

% SMask image
Expand All @@ -453,6 +457,11 @@ type PDSMaskImage extends PDXImage {

}

% Mask image
type PDMaskImage extends PDXImage {

}

% Inline image object
type PDInlineImage extends PDXImage {
% link to the inline image filters
Expand Down

0 comments on commit 8250500

Please sign in to comment.