From digital-printing
Remove footer text and page numbers from a PDF — useful when reprinting a doc whose pagination no longer matches, or stripping a journal/report footer before binding. Triggers on phrases like "remove footers", "strip page numbers", "delete the footer from this PDF".
npx claudepluginhub danielrosehill/claude-code-plugins --plugin digital-printingThis skill uses the workspace's default tool permissions.
Erase footer content (page numbers, dates, document IDs, copyright lines) from every page of a PDF.
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.
Erase footer content (page numbers, dates, document IDs, copyright lines) from every page of a PDF.
whiteout (default) — paint a white rectangle over the footer area; preserves PDF structure and is fast.text-aware — use pdftotext to identify footer text, then redact only matching text runs. Slower but no white box.<input>-no-footer.pdf.pdftk, qpdf, ghostscript, mutool (mupdf-tools), pdftotext (poppler-utils).pdftk ... background or qpdf --overlay.pdfinfo input.pdf | grep "Page size".(0, 0) to (pageWidth, footerHeight).qpdf input.pdf --overlay overlay.pdf -- output.pdf
After stamping, render page 1 and the last page to PNG and visually confirm the footer is gone and no body content was clipped:
gs -sDEVICE=png16m -r100 -o /tmp/check-%d.png -dFirstPage=1 -dLastPage=1 output.pdf
If text-aware mode: run pdftotext output.pdf - | tail and confirm the page-number/footer line no longer appears.