We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
So I have the following code
rule Preflight::Rules::BoxPresence, :any => [:BleedBox]
After checking against a pdf that has a BleedBox present I'm receiving the following error
[#<Preflight::Issue:0x007f863e85be40 @description="page must have any of BleedBox", @rule=:"Preflight::Rules::BoxPresence", @attributes={:page=>1}>]
However, upon closer inspection to the box_presence.rb file I can see BleedBox is not included in the checks
present_boxes = dict.keys & [:MediaBox, :CropBox, :TrimBox, :ArtBox]
Is this on purpose?
The text was updated successfully, but these errors were encountered:
Good question! it's been so long since I looked at this code, I couldn't tell you.
It seems reasonable to add it though - I'll happily merge a PR if you open one
Sorry, something went wrong.
No branches or pull requests
So I have the following code
rule Preflight::Rules::BoxPresence, :any => [:BleedBox]
After checking against a pdf that has a BleedBox present I'm receiving the following error
[#<Preflight::Issue:0x007f863e85be40 @description="page must have any of BleedBox", @rule=:"Preflight::Rules::BoxPresence", @attributes={:page=>1}>]
However, upon closer inspection to the box_presence.rb file I can see BleedBox is not included in the checks
present_boxes = dict.keys & [:MediaBox, :CropBox, :TrimBox, :ArtBox]
Is this on purpose?
The text was updated successfully, but these errors were encountered: