From digital-printing
Add bleed margins to a PDF for commercial print shops that trim — extends the page size by the bleed amount on each side and shifts content to the new center. Most office digital printing does NOT need this; use only when sending to a print shop. Triggers on phrases like "add bleed", "add 3mm bleed", "prep for trim".
npx claudepluginhub danielrosehill/claude-code-plugins --plugin digital-printingThis skill uses the workspace's default tool permissions.
Expand a PDF's page size to add bleed on every side. Commercial print shops trim to the trim line; the bleed area absorbs registration error.
Conducts multi-round deep research on GitHub repos via API and web searches, generating markdown reports with executive summaries, timelines, metrics, and Mermaid diagrams.
Share bugs, ideas, or general feedback.
Expand a PDF's page size to add bleed on every side. Commercial print shops trim to the trim line; the bleed area absorbs registration error.
<input>-bleed.pdf.pdfjam or ghostscript. Strategy: increase MediaBox by 2 × bleed on each axis, then shift content by bleed so it remains centered.
# input is A4: 595 x 842 pt; 3mm = 8.5 pt
gs -o output.pdf \
-sDEVICE=pdfwrite \
-dDEVICEWIDTHPOINTS=612 \
-dDEVICEHEIGHTPOINTS=859 \
-dFIXEDMEDIA \
-c "<</PageOffset [8.5 8.5]>> setpagedevice" \
-f input.pdf
Bleed-extended PDF.